diff options
author | jlam <jlam@pkgsrc.org> | 2003-08-26 20:15:23 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-08-26 20:15:23 +0000 |
commit | 9fbdc941fea7d21de5d5b90812f86cfcc394704e (patch) | |
tree | 8b1c3bab1e6dabee92b179dc0fdf2dc62269e99a /mk/defs.Darwin.mk | |
parent | 4826d368a2175f7a2e4026e3ee433f5c184ee2a4 (diff) | |
download | pkgsrc-9fbdc941fea7d21de5d5b90812f86cfcc394704e.tar.gz |
Create a symlink from the "make" requested by the package into
${TOOLS_DIR}/bin/make. If a package wants GNU make, then it should
set:
USE_GNU_TOOLS+= make
in the package Makefile. Allow for USE_GMAKE to continue to work
until we get a chance to sweep through pkgsrc and remove the usage
of this now-redundant variable.
This change allows us to avoid patching makefiles that use a bare
"make" command to invoke sub-make processes. Idea suggested by
salo@netbsd.org in pkg/22509.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r-- | mk/defs.Darwin.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index 8bd88b14aba..d7068125fb4 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.51 2003/08/23 09:07:07 grant Exp $ +# $NetBSD: defs.Darwin.mk,v 1.52 2003/08/26 20:15:25 jlam Exp $ # # Variable definitions for the Darwin operating system. @@ -103,7 +103,6 @@ IMAKE_MANNEWSUFFIX= ${IMAKE_MAN_SUFFIX} _DO_SHLIB_CHECKS= yes # on installation, fixup PLIST for shared libs _IMAKE_MAKE= ${MAKE} # program which gets invoked by imake -_OPSYS_HAS_GMAKE= yes # GNU make is standard .if ${OS_VERSION} >= 6.0 _OPSYS_HAS_INET6= yes # IPv6 is standard .else |