summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortv <tv>2004-06-07 01:36:19 +0000
committertv <tv>2004-06-07 01:36:19 +0000
commit6c007d0309363d4be81c161d0fd2587e1924fdbf (patch)
treefbc283b8f59d34bb46b2fb8c0be3eeee7f54d393
parent31cb4065ac7c1211edb8fd9bf627ee7b8cda1de1 (diff)
downloadpkgsrc-6c007d0309363d4be81c161d0fd2587e1924fdbf.tar.gz
Fix permissions of include files too.
-rw-r--r--devel/boost/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/devel/boost/Makefile b/devel/boost/Makefile
index 1f0c5ea3716..b9eb2213865 100644
--- a/devel/boost/Makefile
+++ b/devel/boost/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2004/06/06 23:51:36 tv Exp $
+# $NetBSD: Makefile,v 1.21 2004/06/07 01:36:19 tv Exp $
#
COMMENT= Free, portable libraries that integrate with the ISO C++ Stdlib
@@ -31,8 +31,9 @@ do-install:
-s':^libs/.*/test$$::' \
-s':^libs/.*/test/.*$$::' \
*.gif *.css *.htm libs more ${HTMLDIR}
- ${FIND} ${HTMLDIR} -type f -print | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
- ${FIND} ${HTMLDIR} -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE}
- ${FIND} ${PREFIX}/include/boost-1_31 -type f -print | ${XARGS} ${TOUCH}
+ ${FIND} ${HTMLDIR} ${PREFIX}/include/boost-1_31 \
+ -type f -print | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
+ ${FIND} ${HTMLDIR} ${PREFIX}/include/boost-1_31 \
+ -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE}
.include "../../mk/bsd.pkg.mk"