* Try "make" before "gmake": should not (hopefully!) break
anything, and makes build work out of the box on MSYS when
Cygwin is installed and in PATH.
if [ "$GNUMAKE" != "" ] ; then
# The user is evidently trying to tell us something.
GNUMAKE="$GNUMAKE"
+ elif [ "GNU Make" = "`make -v | head -n 1 | cut -b 0-8`" ]; then
+ GNUMAKE=make
elif [ -x "`which gmake`" ] ; then
# "gmake" is the preferred name in *BSD.
GNUMAKE=gmake
elif [ -x "`which gnumake`" ] ; then
# MacOS X aka Darwin
GNUMAKE=gnumake
- elif [ "GNU Make" = "`make -v | head -n 1 | cut -b 0-8`" ]; then
- GNUMAKE=make
else
echo "GNU Make not found. Try setting the environment variable GNUMAKE."
exit 1
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.13.11"
+"0.9.13.12"