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 | 2bd91f8640f3373f00ab2058bdd111406b28b6c7 (patch) | |
tree | 8b1c3bab1e6dabee92b179dc0fdf2dc62269e99a /mk/defs.FreeBSD.mk | |
parent | bb4cd8e267b08809055ddad4165f43bc991d2985 (diff) | |
download | pkgsrc-2bd91f8640f3373f00ab2058bdd111406b28b6c7.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.FreeBSD.mk')
-rw-r--r-- | mk/defs.FreeBSD.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/defs.FreeBSD.mk b/mk/defs.FreeBSD.mk index e2a4c13b293..f8c0f4410a6 100644 --- a/mk/defs.FreeBSD.mk +++ b/mk/defs.FreeBSD.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.FreeBSD.mk,v 1.21 2003/04/15 05:29:46 grant Exp $ +# $NetBSD: defs.FreeBSD.mk,v 1.22 2003/08/26 20:15:26 jlam Exp $ # # Variable definitions for the FreeBSD operating system. @@ -118,7 +118,6 @@ IMAKE_MANNEWSUFFIX= 0 _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 .if exists(/usr/include/netinet6) _OPSYS_HAS_INET6= yes # IPv6 is standard .else |