diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-03-07 15:46:28 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-03-07 15:46:28 +0000 |
commit | 85261de46c606bb19c62704785fa9e4a18edb749 (patch) | |
tree | d70748fb216c7e1d901049afc7d0b345c41d85ab /openwrt/package/openssl/Makefile | |
parent | 0b6d42a949e6e54e0c685066c63908b763c3f1f4 (diff) | |
download | mtk-20170518-85261de46c606bb19c62704785fa9e4a18edb749.zip mtk-20170518-85261de46c606bb19c62704785fa9e4a18edb749.tar.gz mtk-20170518-85261de46c606bb19c62704785fa9e4a18edb749.tar.bz2 |
fix wrong permissions on /etc (fixes from [3327])
SVN-Revision: 3328
Diffstat (limited to 'openwrt/package/openssl/Makefile')
-rw-r--r-- | openwrt/package/openssl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/package/openssl/Makefile b/openwrt/package/openssl/Makefile index f0b5431..0558db6 100644 --- a/openwrt/package/openssl/Makefile +++ b/openwrt/package/openssl/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openssl PKG_VERSION:=0.9.8a -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MD5SUM:=1d16c727c10185e4d694f87f5e424ee1 PKG_SOURCE_URL:=http://www.openssl.org/source/ \ @@ -72,7 +72,8 @@ $(IPKG_OPENSSL_UTIL): install -d -m0755 $(IDIR_OPENSSL_UTIL)/etc/ssl $(CP) $(PKG_INSTALL_DIR)/etc/ssl/openssl.cnf $(IDIR_OPENSSL_UTIL)/etc/ssl/ install -d -m0755 $(IDIR_OPENSSL_UTIL)/etc/ssl/certs - install -d -m0700 $(IDIR_OPENSSL_UTIL)/etc/ssl/private + install -d -m0755 $(IDIR_OPENSSL_UTIL)/etc/ssl/private + chmod 0700 $(IDIR_OPENSSL_UTIL)/etc/ssl/private install -d -m0755 $(IDIR_OPENSSL_UTIL)/usr/bin $(CP) $(PKG_INSTALL_DIR)/usr/bin/openssl $(IDIR_OPENSSL_UTIL)/usr/bin/ $(RSTRIP) $(IDIR_OPENSSL_UTIL) |