Removed dependency on xargs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3397 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-12-07 06:27:26 +00:00
parent 24fab0b16b
commit cfd996d224
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,9 @@
Mon Dec 7 6:45:00 1998 Richard Frith-Macdonald <richard@brainstrom.co.uk>
* openapp.in: Removed dependency on xargs - don't see how it could
have caused the recent problems reported of openapp silently failing
but it's a possibility.
Wed Nov 25 16:25:09 1998 Adam Fedor <fedor@doc.com>
* configure.in (ac_cv_library_combo): Take old value if not set.

View file

@ -76,6 +76,8 @@ case $app in
done;;
esac
IFS= " "
if [ -z "$full_appname" ]; then
echo "Can't find the required application: $app!"
exit 1
@ -123,9 +125,7 @@ if [ "$LIBRARY_COMBO" = nx-nx-nx-nil -a $GNUSTEP_HOST_OS = nextstep4 ]; then
exit 1
fi
# From some reasons $@ does not correctly pass the arguments to the binary
# so I use xargs to do this.
echo $@ | xargs $full_appname/$appname
$full_appname/$appname $@
else
# Determine if the application has a binary for this operating system
@ -139,8 +139,6 @@ else
exit 1
fi
# From some reasons $@ does not correctly pass the arguments to the binary
# so I use xargs to do this.
echo $@ | xargs $full_appname/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO/$appname
$full_appname/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO/$appname £@
fi