Quote paths

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-05-14 15:14:11 +00:00
parent 7105ee031e
commit ef8b3f5dd5
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed May 14 16:19:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* transform_paths.sh: Quote paths.
Wed May 14 16:15:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
* debugapp.in: Added more strict quoting of paths everywhere.

View file

@ -28,10 +28,10 @@ if [ -z "$*" ]; then
exit 0
fi
curdir=`pwd`
curdir="`pwd`"
for dir in $@; do
if [ -d $curdir/$dir ]; then
if [ -d "$curdir/$dir" ]; then
echo "$curdir/$dir"
else
echo "$dir"