diff options
author | dholland <dholland> | 2012-07-28 23:43:56 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-07-28 23:43:56 +0000 |
commit | 2824b8a3b9c831d4452d826eca25a70c2d48c1ce (patch) | |
tree | 54814afb0ce5cb287a355ee3ec728a49f3e2b1e5 /www/aws-demos | |
parent | 4c27e105b50bae7d45dace72fcab04e719f50d77 (diff) | |
download | pkgsrc-2824b8a3b9c831d4452d826eca25a70c2d48c1ce.tar.gz |
Make install rule work even when the umask was 077 during build.
Diffstat (limited to 'www/aws-demos')
-rw-r--r-- | www/aws-demos/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/aws-demos/Makefile b/www/aws-demos/Makefile index 1e8eb370e5b..606a624bbdc 100644 --- a/www/aws-demos/Makefile +++ b/www/aws-demos/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2012/07/08 20:16:13 marino Exp $ +# $NetBSD: Makefile,v 1.4 2012/07/28 23:43:56 dholland Exp $ # DISTNAME= aws-${AWS_VERSION} @@ -77,7 +77,7 @@ do-build: do-install: ${MKDIR} ${DESTDIR}${PREFIX}/share/examples/aws/demos .for dd in ${DEMO_DIRS} - ${FIND} ${WRKSRC}/demos/${dd} -type f -perm -0001 \ + ${FIND} ${WRKSRC}/demos/${dd} -type f -perm -0100 \ -exec ${INSTALL} {} ${DESTDIR}${PREFIX}/share/examples/aws/demos/ \; .endfor |