diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-02 21:10:02 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-02 21:10:02 +0000 |
commit | 955fbd97165b7a7b4ff38b2d86d5cf68b0468c1c (patch) | |
tree | 9fb4cd26df4c1607040ac076b155620123e3b91b /mk/platform | |
parent | f6b7d2a42379f7ae3c8aa9b200ba0c589f01254a (diff) | |
download | pkgsrc-955fbd97165b7a7b4ff38b2d86d5cf68b0468c1c.tar.gz |
* Push the imake- and xmkmf-handling into the new tools framework.
* Get rid of an explicit check for ${_IMAKE_MAKE} == ${GMAKE} in
bsd.pkg.mk to check for whether we need to depend on gmake or not.
Instead, we now note in Linux.mk that packages that need imake will
also need to use gmake by setting _IMAKE_TOOLS+=gmake.
* Push the definition of MAKE_PROGRAM from bsd.pkg.mk into make.mk where
it's closer to related code.
Diffstat (limited to 'mk/platform')
-rw-r--r-- | mk/platform/Linux.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/platform/Linux.mk b/mk/platform/Linux.mk index 342cad3eb41..acf32f12095 100644 --- a/mk/platform/Linux.mk +++ b/mk/platform/Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: Linux.mk,v 1.10 2005/03/18 18:16:35 tv Exp $ +# $NetBSD: Linux.mk,v 1.11 2005/05/02 21:10:02 jlam Exp $ # # Variable definitions for the Linux operating system. @@ -165,6 +165,7 @@ IMAKE_MISCMAN_DIR= ${IMAKE_MAN_SOURCE_PATH}7 IMAKE_MANNEWSUFFIX= ${IMAKE_MAN_SUFFIX} _DO_SHLIB_CHECKS= no # on installation, fixup PLIST for shared libs +_IMAKE_TOOLS= gmake # extra tools required when we use imake _IMAKE_MAKE= ${GMAKE} # program which gets invoked by imake .if exists(/usr/include/netinet6) || exists(/usr/include/linux/in6.h) _OPSYS_HAS_INET6= yes # IPv6 is standard |