diff options
author | tv <tv> | 2004-06-07 01:36:19 +0000 |
---|---|---|
committer | tv <tv> | 2004-06-07 01:36:19 +0000 |
commit | 59ea9e9c3911cf2b930aabd47df088dc20fb8980 (patch) | |
tree | fbc283b8f59d34bb46b2fb8c0be3eeee7f54d393 /devel | |
parent | 713ce12e2efe64f13b614c594fd3900700dcdece (diff) | |
download | pkgsrc-59ea9e9c3911cf2b930aabd47df088dc20fb8980.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" |