summaryrefslogtreecommitdiff
path: root/www/aws-demos
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2012-07-28 23:43:56 +0000
committerdholland <dholland@pkgsrc.org>2012-07-28 23:43:56 +0000
commit2b568c88a00354ef956013c26ff346824e302c24 (patch)
tree54814afb0ce5cb287a355ee3ec728a49f3e2b1e5 /www/aws-demos
parentfbde58d2a54e07a93e229d6116f133b9e9f8aaee (diff)
downloadpkgsrc-2b568c88a00354ef956013c26ff346824e302c24.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/Makefile4
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