pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/tools Don't use the bundled GNU Make on Mac OS X ve...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5b62b64fe2ee
branches:  trunk
changeset: 538620:5b62b64fe2ee
user:      tron <tron%pkgsrc.org@localhost>
date:      Wed Feb 13 23:09:24 2008 +0000

description:
Don't use the bundled GNU Make on Mac OS X version older than Leopard.
Some packages (e.g. "openjade") require GNU Make 3.81 which is not
included in older versions of Mac OS X.

diffstat:

 mk/tools/tools.Darwin.mk |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r c4a1fd19e6ac -r 5b62b64fe2ee mk/tools/tools.Darwin.mk
--- a/mk/tools/tools.Darwin.mk  Wed Feb 13 22:09:23 2008 +0000
+++ b/mk/tools/tools.Darwin.mk  Wed Feb 13 23:09:24 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Darwin.mk,v 1.36 2007/11/26 16:19:08 tron Exp $
+# $NetBSD: tools.Darwin.mk,v 1.37 2008/02/13 23:09:24 tron Exp $
 #
 # System-supplied tools for the Darwin (Mac OS X) operating system.
 
@@ -36,7 +36,9 @@
 TOOLS_PLATFORM.file?=          /usr/bin/file
 TOOLS_PLATFORM.find?=          /usr/bin/find
 TOOLS_PLATFORM.flex?=          /usr/bin/flex
+.if empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
 TOOLS_PLATFORM.gmake?=         /usr/bin/gnumake
+.endif
 TOOLS_PLATFORM.gm4?=           /usr/bin/gm4
 TOOLS_PLATFORM.grep?=          /usr/bin/grep
 TOOLS_PLATFORM.gtar?=          /usr/bin/gnutar



Home | Main Index | Thread Index | Old Index