mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
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:
parent
1b59b6b2b1
commit
13f8b2c045
3 changed files with 6 additions and 2 deletions
|
@ -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
2
configure
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
])
|
||||
|
|
Loading…
Reference in a new issue