Skip to content
Snippets Groups Projects
Commit 1ecb4fe5 authored by nbd's avatar nbd
Browse files

ca-certificates: install to /etc/ssl/certs/ directly instead of installing a symlink (fixes #15351)


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40007 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent e97be7a1
No related branches found
No related tags found
No related merge requests found
......@@ -32,10 +32,8 @@ define Build/Install
endef
define Package/ca-certificates/install
$(INSTALL_DIR) $(1)/etc/ssl
ln -s ../../usr/share/ca-certificates $(1)/etc/ssl/certs
$(INSTALL_DIR) $(1)/usr/share/ca-certificates
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt $(1)/usr/share/ca-certificates/
$(INSTALL_DIR) $(1)/etc/ssl/certs
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt $(1)/etc/ssl/certs/
endef
$(eval $(call BuildPackage,ca-certificates))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment