Fixed setting EXEEXT, a typo was preventing it from working

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9959 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-05-17 23:43:58 +00:00
parent 2e8fb207c2
commit 3362c348ee

View file

@ -53,7 +53,7 @@ esac
# Remove leading slashes at the end of the application name
app=`echo $app | sed 's%/*$%%'`
if [ -z "$EXEEXT" ]; then
if [ -n "$EXEEXT" ]; then
app=$app$EXEEXT
fi