Quote variable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10412 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-07-11 03:30:30 +00:00
parent 1b59b6b2b1
commit 13f8b2c045
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2001-07-10 Adam Fedor <fedor@gnu.org>
* configure.in: Quote $gcc_shared_libobjc in test.
Tue Jul 10 18:13:51 2001 Nicola Pero <nicola@brainstorm.co.uk>
* rules.make (%.build): Modified message when processing

2
configure vendored
View file

@ -1687,7 +1687,7 @@ if test -f $GNUSTEP_HDIR/objc/objc.h; then
fi
fi
gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
if test -f $gcc_shared_libobjc; then
if test -f "$gcc_shared_libobjc"; then
gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
fi

View file

@ -251,7 +251,7 @@ if test -f $GNUSTEP_HDIR/objc/objc.h; then
fi
fi
gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
if test -f $gcc_shared_libobjc; then
if test -f "$gcc_shared_libobjc"; then
gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
fi
])