diff options
author | schmonz <schmonz> | 2002-06-02 19:44:32 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2002-06-02 19:44:32 +0000 |
commit | 841f09c0850df7f2ce66e400282ffb540fde954b (patch) | |
tree | 0b82bb94155da26d027d40a354e11260e6b7fa46 /mk | |
parent | 3fed63b007bd8f8f7f521fcc7fc567a582a93053 (diff) | |
download | pkgsrc-841f09c0850df7f2ce66e400282ffb540fde954b.tar.gz |
Don't rely on /usr/bin/make being a symlink to gnumake; rather,
set GMAKE to /usr/bin/gnumake explicitly.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/defs.Darwin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index a2526b3081b..5361ea29950 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.24 2002/06/02 00:40:18 schmonz Exp $ +# $NetBSD: defs.Darwin.mk,v 1.25 2002/06/02 19:44:32 schmonz Exp $ # # Variable definitions for the Darwin operating system. @@ -18,7 +18,7 @@ EGREP?= /usr/bin/egrep FALSE?= false # Shell builtin FILE_CMD?= /usr/bin/file FIND?= /usr/bin/find -GMAKE?= /usr/bin/make +GMAKE?= /usr/bin/gnumake GREP?= /usr/bin/grep GTAR?= /usr/bin/gnutar GUNZIP_CMD?= /usr/bin/gunzip -f |