Minro fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@4397 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1999-06-11 21:08:17 +00:00
parent 52b2914977
commit fc68027055
2 changed files with 7 additions and 9 deletions

View file

@ -1,3 +1,7 @@
Fri Jun 11 17:23:59 1999 Adam Fedor <fedor@ultra.doc.com>
* executable.template.in: Fixes to work on Solaris
1999-06-03 Adam Fedor <fedor@gnu.org>
* ctool.make: New file for making C tools.

View file

@ -20,13 +20,6 @@
# This is a shell script which attempts to find the GNUstep executable
# of the same name based on the current host and library_combo.
#--------------------------------------------------------------------------
# Functions
#--------------------------------------------------------------------------
available-platforms() {
echo -- NOT IMPLEMENTED YET ---
}
#--------------------------------------------------------------------------
# Main body
#--------------------------------------------------------------------------
@ -134,13 +127,14 @@ fi
#
app=`echo $app | sed 's/\.[a-z]*$//'`
app=`basename $app`
appname=
if [ -f $full_appname/Resources/Info-gnustep.plist ]; then
appname=`grep NSExecutable $full_appname/Resources/Info-gnustep.plist`
if [ -n '$appname' ]; then
appname=`echo '$appname' | sed 's,\", ,g' | awk '{print $3}'`
fi
fi
if [ -z $appname ]; then
if [ -z "$appname" ]; then
appname=$app
fi
@ -150,7 +144,7 @@ fi
if [ $show_available_platforms = 1 ]; then
cd $full_appname
available_platforms
#available_platforms
exit 0
fi