summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2013-06-02 03:04:22 +0000
committerobache <obache@pkgsrc.org>2013-06-02 03:04:22 +0000
commit9684e95fe008e725c3dc850a8a851ff89c69b537 (patch)
tree1b27cc155c984be85b52ed61e690d52124f39ea4
parent82eae7f286f09fc85d71cafad20efc53bc72db24 (diff)
downloadpkgsrc-9684e95fe008e725c3dc850a8a851ff89c69b537.tar.gz
gmake is not in /bin on Haiku R1Alpha4.
-rw-r--r--mk/tools/tools.Haiku.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/tools/tools.Haiku.mk b/mk/tools/tools.Haiku.mk
index 61f64ea99cf..09188fc7959 100644
--- a/mk/tools/tools.Haiku.mk
+++ b/mk/tools/tools.Haiku.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Haiku.mk,v 1.5 2010/08/25 10:43:34 obache Exp $
+# $NetBSD: tools.Haiku.mk,v 1.6 2013/06/02 03:04:22 obache Exp $
#
# System-supplied tools for the Haiku operating system.
@@ -32,7 +32,11 @@ TOOLS_PLATFORM.find?= /bin/find
TOOLS_PLATFORM.ftp?= /bin/ftp
TOOLS_PLATFORM.gawk?= /bin/gawk
TOOLS_PLATFORM.gm4?= /boot/common/bin/m4
+.if exists(/bin/make)
TOOLS_PLATFORM.gmake?= /bin/make
+.elif exists(/boot/common/bin/make)
+TOOLS_PLATFORM.gmake?= /boot/common/bin/make
+.endif
TOOLS_PLATFORM.grep?= /bin/grep
#TOOLS_PLATFORM.groff?= /usr/bin/groff
.if exists(/bin/sed)