You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2010/07/25 21:32:25 UTC

svn commit: r979098 - /apr/apr-util/branches/1.4.x/build/find_apu.m4

Author: rjung
Date: Sun Jul 25 19:32:25 2010
New Revision: 979098

URL: http://svn.apache.org/viewvc?rev=979098&view=rev
Log:
Quote argument when used.

Choosing the same style as in the "sed" command
directly below.

Backport of r979097 from the 1.5.x branch.

Modified:
    apr/apr-util/branches/1.4.x/build/find_apu.m4

Modified: apr/apr-util/branches/1.4.x/build/find_apu.m4
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/build/find_apu.m4?rev=979098&r1=979097&r2=979098&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/build/find_apu.m4 (original)
+++ apr/apr-util/branches/1.4.x/build/find_apu.m4 Sun Jul 25 19:32:25 2010
@@ -185,7 +185,7 @@ AC_DEFUN([APR_FIND_APU], [
     fi
     dnl if we have not found anything yet and have bundled source, use that
     if test "$apu_found" = "no" && test -d "$1"; then
-      apu_temp_abs_srcdir="`cd $1 && pwd`"
+      apu_temp_abs_srcdir="`cd \"$1\" && pwd`"
       apu_found="reconfig"
       apu_bundled_major="`sed -n '/#define.*APU_MAJOR_VERSION/s/^[^0-9]*\([0-9]*\).*$/\1/p' \"$1/include/apu_version.h\"`"
       case $apu_bundled_major in