You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by sf...@apache.org on 2011/10/15 23:06:47 UTC

svn commit: r1183710 - in /apr/apr/branches/1.5.x: ./ build/apr_common.m4

Author: sf
Date: Sat Oct 15 21:06:46 2011
New Revision: 1183710

URL: http://svn.apache.org/viewvc?rev=1183710&view=rev
Log:
Backport r1183686:

    Fix APR_RESTORE_THE_ENVIRONMENT if the original variable was a single space

    Autoconf selects a POSIX shell for us, so we can get rid of sed, here.

    PR 50334
    Submitted by:  Nathan Phillip Brink <binki gentoo org>


Modified:
    apr/apr/branches/1.5.x/   (props changed)
    apr/apr/branches/1.5.x/build/apr_common.m4

Propchange: apr/apr/branches/1.5.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Oct 15 21:06:46 2011
@@ -1,2 +1,2 @@
 /apr/apr/branches/1.4.x:1101301
-/apr/apr/trunk:733052,747990,748361,748371,748565,748888,748902,748988,749810,760443,782838,783398,783958,784633,784773,788588,793192-793193,794118,794485,795267,799497,800627,809745,809854,810472,811455,813063,821306,829490,831641,835607,908427,910419,917819,917837-917838,983618,990435,1055657,1072165,1078845,1183683,1183685
+/apr/apr/trunk:733052,747990,748361,748371,748565,748888,748902,748988,749810,760443,782838,783398,783958,784633,784773,788588,793192-793193,794118,794485,795267,799497,800627,809745,809854,810472,811455,813063,821306,829490,831641,835607,908427,910419,917819,917837-917838,983618,990435,1055657,1072165,1078845,1183683,1183685-1183686

Modified: apr/apr/branches/1.5.x/build/apr_common.m4
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/build/apr_common.m4?rev=1183710&r1=1183709&r2=1183710&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/build/apr_common.m4 (original)
+++ apr/apr/branches/1.5.x/build/apr_common.m4 Sat Oct 15 21:06:46 2011
@@ -209,7 +209,7 @@ else
   if test "x$apr_ste_save_$1" = "x$$1"; then
     $2$1=
   else
-    $2$1=`echo $$1 | sed -e "s%${apr_ste_save_$1}%%"`
+    $2$1="${$1#"${apr_ste_save_$1}"}"
     $1="$apr_ste_save_$1"
   fi
 fi