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:
Adam Fedor 1999-06-11 21:10:35 +00:00
parent fc68027055
commit 873ab81968
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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