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.Linux.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.Linux.mk')
-rw-r--r-- | mk/defs.Linux.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk index 5dee162a8c4..d69770fac3e 100644 --- a/mk/defs.Linux.mk +++ b/mk/defs.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Linux.mk,v 1.20 2001/11/21 14:10:07 agc Exp $ +# $NetBSD: defs.Linux.mk,v 1.21 2001/12/19 10:29:11 agc Exp $ # # Variable definitions for the Linux operating system. @@ -18,6 +18,7 @@ EGREP?= /bin/egrep FALSE?= /bin/false FILE_CMD?= /usr/bin/file FIND?= /usr/bin/find +GMAKE?= /usr/bin/make GREP?= /bin/grep GTAR?= /bin/tar GUNZIP_CMD?= /usr/bin/gunzip -f @@ -71,6 +72,7 @@ ZOULARISBASE?= ${DESTDIR}/usr/local/bsd _DO_LIBINTL_CHECKS= no # perform checks for valid libintl _DO_SHLIB_CHECKS= no # on installation, fixup PLIST for shared libs _IMAKE_MAKE= ${MAKE} # program which gets invoked by imake +_OPSYS_HAS_GMAKE= yes # GNU make is standard _OPSYS_HAS_MANZ= no # no MANZ for gzipping of man pages _OPSYS_HAS_OSSAUDIO= no # libossaudio is available _PATCH_BACKUP_ARG= -z # switch to patch(1) for backup file |