Recognize 'apple' as library-combo abbreviation for apple-apple-apple

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@15384 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-12-30 16:29:55 +00:00
parent 221497fba8
commit 91cd97df43
2 changed files with 5 additions and 0 deletions

View file

@ -48,6 +48,7 @@ case $1 in
echo It overrides the default LIBRARY_COMBO environment variable.
echo --library-combo=gnu for GNUstep
echo --library-combo=nx for NeXT OPENSTEP
echo --library-combo=apple for Apple OSX
echo
echo application is the complete or relative name of the application
echo program with the .app extension, like Edit.app.
@ -74,6 +75,8 @@ elif [ "$LIBRARY_COMBO" = gnu ]; then
LIBRARY_COMBO=gnu-gnu-gnu
elif [ "$LIBRARY_COMBO" = fd ]; then
LIBRARY_COMBO=gnu-fd
elif [ "$LIBRARY_COMBO" = apple ]; then
LIBRARY_COMBO=apple-apple-apple
fi
# Remove leading slashes at the end of the application name

View file

@ -88,6 +88,8 @@ elif [ "$LIBRARY_COMBO" = gnu ]; then
LIBRARY_COMBO=gnu-gnu-gnu
elif [ "$LIBRARY_COMBO" = fd ]; then
LIBRARY_COMBO=gnu-fd-gnu
elif [ "$LIBRARY_COMBO" = apple ]; then
LIBRARY_COMBO=apple-apple-apple
fi
export LIBRARY_COMBO