summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2003-01-08 13:09:17 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2003-01-08 13:09:17 +0000
commit6dba3fc0acb20a6198a6524362d70b5564fbf661 (patch)
treef189296bb8b075ce5348b0abda8a83cf5ad172aa /apr-config.in
parent6d0d00ebc5ea7fea9cb1bcaa04e3d134d70f0e9e (diff)
downloadlibapr-6dba3fc0acb20a6198a6524362d70b5564fbf661.tar.gz
The which line should be double-quoted.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64279 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/apr-config.in b/apr-config.in
index ce54bf317..d32f191b3 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -123,7 +123,7 @@ thisdir="`dirname $0`"
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