From f68234c9c219df0a7d4e2e95301908479e8ea1fc Mon Sep 17 00:00:00 2001 From: helge Date: Thu, 21 Oct 2004 14:33:26 +0000 Subject: [PATCH] check for empty gstep-make tree var git-svn-id: http://svn.opengroupware.org/SOPE/trunk@291 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 2fb91919..71ba74e1 100755 --- a/configure +++ b/configure @@ -95,7 +95,10 @@ _ACEOFWARN function validateGNUstepArgs() { # GNUstep make - if test -d $ARG_GSMAKE; then + if test "x$ARG_GSMAKE" = "x"; then + echo "error: did not specify a GNUstep make tree!" + exit 1 + elif test -d $ARG_GSMAKE; then if test -f $ARG_GSMAKE/GNUstep.sh; then DARG_GNUSTEP_SH="$ARG_GSMAKE/GNUstep.sh" elif test -f $ARG_GSMAKE/Library/Makefiles/GNUstep.sh; then -- 2.39.5