mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Add current path
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@4398 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fc68027055
commit
873ab81968
2 changed files with 8 additions and 0 deletions
|
@ -103,6 +103,10 @@ case $app in
|
|||
full_appname=`(cd $dir/Apps/$app; pwd)`
|
||||
break;
|
||||
fi
|
||||
if [ -d $dir/$app ]; then
|
||||
full_appname=`(cd $dir/$app; pwd)`
|
||||
break;
|
||||
fi
|
||||
done;;
|
||||
esac
|
||||
|
||||
|
|
|
@ -106,6 +106,10 @@ case $app in
|
|||
full_appname=`(cd $dir/Apps/$app; pwd)`
|
||||
break;
|
||||
fi
|
||||
if [ -d $dir/$app ]; then
|
||||
full_appname=`(cd $dir/$app; pwd)`
|
||||
break;
|
||||
fi
|
||||
done;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue