mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
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:
parent
221497fba8
commit
91cd97df43
2 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue