diff options
author | christos <christos@pkgsrc.org> | 2013-07-15 19:55:31 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 2013-07-15 19:55:31 +0000 |
commit | 59cadd178c9578ef4f7bc062a8d987eb7fc3b110 (patch) | |
tree | 6297466744dccc495cc7a3d70541d734918470a3 /audio | |
parent | e2e26baa53dd7bef4643b569d82042767a3caa4d (diff) | |
download | pkgsrc-59cadd178c9578ef4f7bc062a8d987eb7fc3b110.tar.gz |
remove gmake from TOOLS. NAS uses imake and imake forces the use of
/usr/bin/make in all Makefiles. Fixes PR/47933.
gmake saw $MAKELEVEL being set, and passed -w to recursive makes (so
directory enter and exit events are printed). Imake forces our make
to be used, and our make does not understand -w (yet)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/nas/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index 55fa48d6b38..6bec552bc7c 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2013/07/07 05:45:15 ryoon Exp $ +# $NetBSD: Makefile,v 1.93 2013/07/15 19:55:31 christos Exp $ DISTNAME= nas-1.9.3.src PKGNAME= ${DISTNAME:S/.src//} @@ -18,7 +18,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews MAKE_JOBS_SAFE= no WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} -USE_TOOLS+= gmake yacc lex makedepend +USE_TOOLS+= yacc lex makedepend USE_IMAKE= yes PKG_SYSCONFSUBDIR= nas |