diff options
author | martti <martti> | 2002-11-19 09:35:27 +0000 |
---|---|---|
committer | martti <martti> | 2002-11-19 09:35:27 +0000 |
commit | 49c8597817ebfb323465ac3e1a10fce9388c95cb (patch) | |
tree | e9636402833191daa656d69bee4c2134da1aa3c7 /www/apache6 | |
parent | 103f01712b8e6535b708b3269ccbb064156ca35d (diff) | |
download | pkgsrc-49c8597817ebfb323465ac3e1a10fce9388c95cb.tar.gz |
Pullup revisions 1.114 and 1.115 from www/apache/Makefile:
Use "${NONBINMODE}" instead of mode "0" so that "pkg_admin check" still
works for a normal user. Also invoke "chmod" only once because fork()
and exec() is expensive on certain platforms.
Diffstat (limited to 'www/apache6')
-rw-r--r-- | www/apache6/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/apache6/Makefile b/www/apache6/Makefile index cbd7d42df61..9822614ce1b 100644 --- a/www/apache6/Makefile +++ b/www/apache6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2002/11/18 08:19:55 martti Exp $ +# $NetBSD: Makefile,v 1.63 2002/11/19 09:35:27 martti Exp $ # # This package does not compile in mod_ssl support hooks, as it conflicts # with IPv6-enable patch. @@ -166,8 +166,8 @@ post-install: ${RM} -f ${PKG_SYSCONFDIR}/$${file}.default; \ done ${INSTALL_DATA} ${DISTDIR}/sitedrivenby.gif ${PREFIX}/share/httpd/htdocs - ${CHMOD} 0 ${PREFIX}/libexec/cgi-bin/printenv - ${CHMOD} 0 ${PREFIX}/libexec/cgi-bin/test-cgi + ${CHMOD} ${NONBINMODE} ${PREFIX}/libexec/cgi-bin/printenv \ + ${PREFIX}/libexec/cgi-bin/test-cgi .include "../../textproc/expat/buildlink2.mk" |