diff options
author | tv <tv@pkgsrc.org> | 2004-06-07 01:36:19 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-06-07 01:36:19 +0000 |
commit | d5e0330b5b3fc6080c4b7e066b0400363050c171 (patch) | |
tree | fbc283b8f59d34bb46b2fb8c0be3eeee7f54d393 /devel | |
parent | 90f360830b22a18699a9c2aaa75d6303b0792002 (diff) | |
download | pkgsrc-d5e0330b5b3fc6080c4b7e066b0400363050c171.tar.gz |
Fix permissions of include files too.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/boost/Makefile | 9 |
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" |