From: Jo-Philipp Wich Date: Mon, 29 Jun 2009 20:48:58 +0000 (+0000) Subject: openssl: fix bad chmod in install section (#5433) X-Git-Tag: reboot~23103 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=115aced5c77eb36252faf4fa6a96cd956f0a0c58;p=openwrt%2Fstaging%2Flynxis.git openssl: fix bad chmod in install section (#5433) SVN-Revision: 16624 --- diff --git a/package/openssl/Makefile b/package/openssl/Makefile index 3483c609d2..e6788172d1 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -130,8 +130,8 @@ endef define Package/libopenssl/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.so.* $(1)/usr/lib/ - chmod 0644 $(1)/usr/lib/* + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libcrypto.so.* $(1)/usr/lib/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libssl.so.* $(1)/usr/lib/ endef define Package/openssl-util/install