From: chak Date: Tue, 22 Aug 2000 08:03:15 +0000 (+0000) Subject: [project @ 2000-08-22 08:03:15 by chak] X-Git-Tag: Approximately_9120_patches~3842 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=355076ac5c42dbc9b50ba150f2fdf1a0e76fa8e3 [project @ 2000-08-22 08:03:15 by chak] Works now independent of whether GNU make is installed as gmake or make on the system. [lewie: It was not so good to just change `make' to `gmake'; broke the thing on our Solaris boxen, which have GNU make as the default make.] --- diff --git a/distrib/hc-build b/distrib/hc-build index 0b1a03c..a907478 100644 --- a/distrib/hc-build +++ b/distrib/hc-build @@ -9,6 +9,18 @@ configopts="$*" +# check for GNU make +# +MAKENAMES="gmake make no-make" +for make in $MAKENAMES; do + MAKE=$make + $make --version 2>&1 | grep "GNU Make" >/dev/null && break +done +if [ $MAKE = no-make ]; then + echo "Fatal error: Cannot find the GNU make utility" + exit 1 +fi + # build configuration # cat >mk/build.mk <>mk/build.mk -gmake -C ghc/lib clean boot all || exit 1 -gmake -C hslibs clean boot all +$MAKE -C ghc/lib clean boot all || exit 1 +$MAKE -C hslibs clean boot all