diff options
author | shattered <shattered@pkgsrc.org> | 2016-03-03 19:42:29 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2016-03-03 19:42:29 +0000 |
commit | 4a45b8818ebf2b5f03bd7e2191bf4e50d60900d7 (patch) | |
tree | 29a0665dcda2eeb5e679d89c5aab2cda45c90e3a /games/netmaj/Makefile | |
parent | 2402fdf2f910d8a3faf12ff74191274b000c81d2 (diff) | |
download | pkgsrc-4a45b8818ebf2b5f03bd7e2191bf4e50d60900d7.tar.gz |
Avoid build failures when chmod respects umask, and 'chmod -x' thus does
not clear all bits. (Can happen on Linux --
https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/67583)
Diffstat (limited to 'games/netmaj/Makefile')
-rw-r--r-- | games/netmaj/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/netmaj/Makefile b/games/netmaj/Makefile index 5910000f790..68dd6b58630 100644 --- a/games/netmaj/Makefile +++ b/games/netmaj/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2015/08/17 17:11:23 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2016/03/03 19:42:29 shattered Exp $ # DISTNAME= netmaj-2.0.7 @@ -23,7 +23,7 @@ DOCDIR= ${PREFIX}/share/doc/netmaj pre-configure: cp ${FILESDIR}/configure.sh ${WRKSRC}/configure chmod +x ${WRKSRC}/configure - chmod -x ${WRKSRC}/auto.pf + chmod a-x ${WRKSRC}/auto.pf post-install: ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR} |