jerenkrantz 2003/01/08 05:09:17
Modified: . apr-config.in
Log:
The which line should be double-quoted.
Revision Changes Path
1.28 +1 -1 apr/apr-config.in
Index: apr-config.in
===================================================================
RCS file: /home/cvs/apr/apr-config.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -u -r1.27 -r1.28
--- apr-config.in 8 Jan 2003 09:47:04 -0000 1.27
+++ apr-config.in 8 Jan 2003 13:09:17 -0000 1.28
@@ -123,7 +123,7 @@
thisdir="`cd $thisdir && pwd`"
# If we have the realpath program, use it to resolve symlinks.
# Otherwise, being in a symlinked dir may result in incorrect output.
-if test -x `which realpath 2>/dev/null`; then
+if test -x "`which realpath 2>/dev/null`"; then
thisdir="`realpath $thisdir`"
fi
if test -d $bindir; then