From 9d7350f14fe6aa03e99829d08fe717606fc2bfa3 Mon Sep 17 00:00:00 2001 From: billwhite <> Date: Mon, 21 Aug 2000 19:10:38 +0000 Subject: [PATCH] Fixed a syntax error. --- glide3x/build.3dfx.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/glide3x/build.3dfx.in b/glide3x/build.3dfx.in index 1c73782..312cc57 100644 --- a/glide3x/build.3dfx.in +++ b/glide3x/build.3dfx.in @@ -86,8 +86,9 @@ if [ $USING_XTERM -gt 0 ] then xterm_title --title "build.3dfx $@ (RUNNING) @ `hostname --fqdn`:$PWD" fi -if instrument_command make -f makefile.autoconf "$@" 2>&1 -then +instrument_command make -f makefile.autoconf "$@" 2>&1 +retstat="$?" +if test "$retstat" = 0 ; then RETVAL="DONE" else RETVAL="FAILED" @@ -96,3 +97,4 @@ if [ $USING_XTERM -gt 0 ] then xterm_title --title "build.3dfx $@ ($RETVAL) @ `hostname --fqdn`:$PWD" fi +exit $retstat