From b7fd7089b67eecfa7afe8434217cbad08ce657be Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 9 Jun 2005 20:20:40 +0000 Subject: [PATCH] *** empty log message *** --- citadel/newinstall.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/citadel/newinstall.sh b/citadel/newinstall.sh index 66fd54517..1770a7279 100644 --- a/citadel/newinstall.sh +++ b/citadel/newinstall.sh @@ -335,8 +335,18 @@ do_config () { # 1. Gather information about the target system -[ -n "$MAKE" ] && [ -x `which gmake` ] && MAKE=`which gmake` -##### FIXME: non-GNU make does not work #####[ -z "$MAKE" ] && [ -x `which make` ] && MAKE=`which make` +# FIXME: non-GNU make does not work + +gmake -v || { + echo + echo 'Easy Install requires GNU Make (gmake), which was not found.' + echo 'Please install gmake and try again.' + echo + exit 1 +} +MAKE=`which gmake` +export MAKE + clear os=`uname` -- 2.39.2