From commits-return-11407-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Mon Jul 26 10:30:43 2010 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 16108 invoked from network); 26 Jul 2010 10:30:43 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Jul 2010 10:30:43 -0000 Received: (qmail 35997 invoked by uid 500); 26 Jul 2010 10:30:43 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 35891 invoked by uid 500); 26 Jul 2010 10:30:42 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 35725 invoked by uid 99); 26 Jul 2010 10:30:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jul 2010 10:30:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jul 2010 10:30:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A995D23889B2; Mon, 26 Jul 2010 10:29:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r979231 - /apr/apr-util/branches/1.3.x/build/find_apu.m4 Date: Mon, 26 Jul 2010 10:29:46 -0000 To: commits@apr.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100726102946.A995D23889B2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Mon Jul 26 10:29:46 2010 New Revision: 979231 URL: http://svn.apache.org/viewvc?rev=979231&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 branch resp. r979098 from the 1.4 branch. Modified: apr/apr-util/branches/1.3.x/build/find_apu.m4 Modified: apr/apr-util/branches/1.3.x/build/find_apu.m4 URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/build/find_apu.m4?rev=979231&r1=979230&r2=979231&view=diff ============================================================================== --- apr/apr-util/branches/1.3.x/build/find_apu.m4 (original) +++ apr/apr-util/branches/1.3.x/build/find_apu.m4 Mon Jul 26 10:29:46 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