Renamed 'Apps' directory to 'Applications'

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12874 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-02-28 11:08:53 +00:00
parent 8442d1cbce
commit cb8d7745d6
4 changed files with 8 additions and 8 deletions

View file

@ -118,7 +118,7 @@ install: all
$(makedir)/Instance/Shared \
$(tooldir) \
$(GNUSTEP_SYSTEM_ROOT)/share \
$(GNUSTEP_SYSTEM_ROOT)/Apps \
$(GNUSTEP_SYSTEM_ROOT)/Applications \
$(GNUSTEP_SYSTEM_ROOT)/Libraries/$(GNUSTEP_TARGET_LDIR) \
$(GNUSTEP_SYSTEM_ROOT)/Libraries/Resources \
$(GNUSTEP_SYSTEM_ROOT)/Libraries/Java \
@ -135,7 +135,7 @@ install: all
$(GNUSTEP_SYSTEM_ROOT)/Documentation/info \
$(GNUSTEP_SYSTEM_ROOT)/Documentation/man \
$(GNUSTEP_SYSTEM_ROOT)/Developer/Palettes \
$(GNUSTEP_LOCAL_ROOT)/Apps \
$(GNUSTEP_LOCAL_ROOT)/Applications \
$(GNUSTEP_LOCAL_ROOT)/Libraries/$(GNUSTEP_TARGET_LDIR) \
$(GNUSTEP_LOCAL_ROOT)/Libraries/Resources \
$(GNUSTEP_LOCAL_ROOT)/Libraries/Java \

View file

@ -95,8 +95,8 @@ case $app in
SPATH=.:$SPATH
IFS=:
for dir in $SPATH; do
if [ -d $dir/Apps/$app ]; then
full_appname=`(cd $dir/Apps/$app; pwd)`
if [ -d $dir/Applications/$app ]; then
full_appname=`(cd $dir/Applications/$app; pwd)`
break;
fi
if [ -d $dir/$app ]; then

View file

@ -105,8 +105,8 @@ case $app in
full_appname=`(cd $path_dir/$dir; pwd)`
break;
fi
if [ -d $path_dir/Apps/$dir ]; then
full_appname=`(cd $path_dir/Apps/$dir; pwd)`
if [ -d $path_dir/Applications/$dir ]; then
full_appname=`(cd $path_dir/Applications/$dir; pwd)`
break;
fi
done;;

View file

@ -71,8 +71,8 @@ case $app in
SPATH=.:$SPATH
IFS=:
for dir in $SPATH; do
if [ -d $dir/Apps/$app ]; then
full_appname=`(cd $dir/Apps/$app; pwd)`
if [ -d $dir/Applications/$app ]; then
full_appname=`(cd $dir/Applications/$app; pwd)`
break;
fi
if [ -d $dir/$app ]; then