mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
2e8fb207c2
commit
3362c348ee
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue