diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2003-01-08 13:09:17 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2003-01-08 13:09:17 +0000 |
commit | 62ea43449fed5f43a1a252ff5e22a5a6bbeed255 (patch) | |
tree | f189296bb8b075ce5348b0abda8a83cf5ad172aa /apr-config.in | |
parent | d476fe973afcfbfe0cdbde9bdb30475afb5eed3e (diff) | |
download | apr-62ea43449fed5f43a1a252ff5e22a5a6bbeed255.tar.gz |
The which line should be double-quoted.
git-svn-id: https://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.in | 2 |
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 |