From 61c2dee343629b17aa8cd4828a744b8363fbf999 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Thu, 6 Dec 2007 16:24:43 +0000
Subject: [PATCH] This has the same issue with finding make as in build.sh. 
 Copy over the code from build.sh to here so we do the same thing.

(Should this be moved out to a separate file?)
---
 tools/build-utils.sh | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/tools/build-utils.sh b/tools/build-utils.sh
index 1874c901b..7fd07886f 100755
--- a/tools/build-utils.sh
+++ b/tools/build-utils.sh
@@ -42,7 +42,15 @@ EOF
 if [ "$MAKE" = "" ]
 then    
     MAKE="`which gmake`"
-    if echo $MAKE | grep '^no' > /dev/null; then
+
+    # Some versions of which set an error code if it fails.  Others
+    # say "no foo in <path>".  In either of these cases, just assume
+    # make is GNU make.
+
+    if [ $? -ne 0 ]; then
+	MAKE="make"
+    fi
+    if echo "X$MAKE" | grep '^Xno' > /dev/null; then
 	MAKE="make"
     fi
 fi
-- 
GitLab