Fixed passing quoted arguments

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@7850 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-10-19 14:57:45 +00:00
parent 5430b7e4d0
commit 7759e0bce4

View file

@ -167,7 +167,7 @@ if [ "$LIBRARY_COMBO" = nx-nx-nx-nil -a $GNUSTEP_HOST_OS = nextstep4 ]; then
fi
IFS=" "
$full_appname/$appname $@
$full_appname/$appname "$@"
else
# Determine if the application has a binary for this operating system
@ -182,6 +182,6 @@ else
fi
IFS=" "
$full_appname/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO/$appname $@
$full_appname/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO/$appname "$@"
fi