You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by jg...@apache.org on 2006/03/05 19:05:59 UTC

svn commit: r383362 - in /httpd/mod_python/branches/3.2.x: configure configure.in

Author: jgallacher
Date: Sun Mar  5 10:05:55 2006
New Revision: 383362

URL: http://svn.apache.org/viewcvs?rev=383362&view=rev
Log:
Backport fix for bash 3.1.x configure problems (MODPYTHON-122) 

Modified:
    httpd/mod_python/branches/3.2.x/configure
    httpd/mod_python/branches/3.2.x/configure.in

Modified: httpd/mod_python/branches/3.2.x/configure
URL: http://svn.apache.org/viewcvs/httpd/mod_python/branches/3.2.x/configure?rev=383362&r1=383361&r2=383362&view=diff
==============================================================================
--- httpd/mod_python/branches/3.2.x/configure (original)
+++ httpd/mod_python/branches/3.2.x/configure Sun Mar  5 10:05:55 2006
@@ -3035,7 +3035,7 @@
 # get the mod_python version
 
 MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
-MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`
+MP_VERSION=`echo $MP_VERSION | sed 's/"//g'`
 
 # get --with-python-src. The python src is required to generate the documentation
 # It is not required to compile or install mod_python itself

Modified: httpd/mod_python/branches/3.2.x/configure.in
URL: http://svn.apache.org/viewcvs/httpd/mod_python/branches/3.2.x/configure.in?rev=383362&r1=383361&r2=383362&view=diff
==============================================================================
--- httpd/mod_python/branches/3.2.x/configure.in (original)
+++ httpd/mod_python/branches/3.2.x/configure.in Sun Mar  5 10:05:55 2006
@@ -287,7 +287,7 @@
 # get the mod_python version
 AC_SUBST(MP_VERSION)
 MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
-MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`                                      
+MP_VERSION=`echo $MP_VERSION | sed 's/["]//g'`
 
 # get --with-python-src. The python src is required to generate the documentation
 # It is not required to compile or install mod_python itself