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

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40007 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau
2014-03-23 11:59:37 +00:00
parent e7a9ff8b70
commit ae3046225c

View File

@@ -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))