X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=find-gnumake.sh;h=1446ab2dba3ec2f5b1726a9dc6933fc2156d731b;hb=6cb4f9ea3f4e35a5a8e75922833e14575ae92180;hp=6f6e84d15ccb61526f30d21fc88d6a9093bb2df1;hpb=2b967f60e803c9d25b4d61b979298bad9a9f5003;p=sbcl.git diff --git a/find-gnumake.sh b/find-gnumake.sh index 6f6e84d..1446ab2 100644 --- a/find-gnumake.sh +++ b/find-gnumake.sh @@ -1,3 +1,4 @@ +#!/bin/false # Not a shell script, but something intended to be sourced from shell scripts find_gnumake() { # the GNU dialect of "make" -- easier to find or port it than to @@ -10,7 +11,7 @@ find_gnumake() { GNUMAKE=gmake elif [ -x "`which gnumake`" ] ; then # MacOS X aka Darwin - GNUMAKE=gnumake + GNUMAKE=gnumake elif [ "GNU Make" = "`make -v | head -n 1 | cut -b 0-8`" ]; then GNUMAKE=make else @@ -18,5 +19,5 @@ find_gnumake() { exit 1 fi export GNUMAKE - echo "//GNUMAKE=\"$GNUMAKE\"" + #echo "//GNUMAKE=\"$GNUMAKE\"" }