diff options
author | agc <agc@pkgsrc.org> | 2001-12-19 10:29:11 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-12-19 10:29:11 +0000 |
commit | f42759a8003d907d728ba939501fed3cd7adeee2 (patch) | |
tree | e4fb50603d16851644dfdf4c5f511b07676bf74c /mk/defs.NetBSD.mk | |
parent | b467958c6617941e910aaa9afc08b64a8fcaefa7 (diff) | |
download | pkgsrc-f42759a8003d907d728ba939501fed3cd7adeee2.tar.gz |
Add a new _OPSYS_HAS_GMAKE definition, to denote that the OS has GNU make
as standard.
Hoist the default definition of ${GMAKE} from bsd.pkg.mk into the different
defs.${OPSYS}.mk files.
A non-standard location or name for GMAKE can still be specified in
/etc/mk.conf.
Diffstat (limited to 'mk/defs.NetBSD.mk')
-rw-r--r-- | mk/defs.NetBSD.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/defs.NetBSD.mk b/mk/defs.NetBSD.mk index 6ce4e42de7f..ae691cff5bc 100644 --- a/mk/defs.NetBSD.mk +++ b/mk/defs.NetBSD.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.NetBSD.mk,v 1.18 2001/11/21 14:10:07 agc Exp $ +# $NetBSD: defs.NetBSD.mk,v 1.19 2001/12/19 10:29:11 agc Exp $ # # Variable definitions for the NetBSD operating system. @@ -18,6 +18,7 @@ EGREP?= /usr/bin/egrep FALSE?= false # Shell builtin FILE_CMD?= /usr/bin/file FIND?= /usr/bin/find +GMAKE?= ${LOCALBASE}/bin/gmake GREP?= /usr/bin/grep GTAR?= /usr/bin/tar GUNZIP_CMD?= /usr/bin/gunzip -f @@ -73,6 +74,7 @@ ROOT_GROUP?= wheel _DO_LIBINTL_CHECKS= yes # perform checks for valid libintl _DO_SHLIB_CHECKS= yes # fixup PLIST for shared libs/run ldconfig _IMAKE_MAKE= ${MAKE} # program which gets invoked by imake +_OPSYS_HAS_GMAKE= no # GNU make is not standard _OPSYS_HAS_MANZ= yes # MANZ controls gzipping of man pages _OPSYS_HAS_OSSAUDIO= yes # libossaudio is available _PATCH_BACKUP_ARG= -b # switch to patch(1) to provide a backup file |