mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
8442d1cbce
commit
cb8d7745d6
4 changed files with 8 additions and 8 deletions
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue