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