@@ -, +, @@ ------------------------------------------------------------------------ M /httpd/mod_python/trunk/configure M /httpd/mod_python/trunk/configure.in ------------------------------------------------------------------------ --- configure (revision 376554) +++ configure (revision 376555) @@ -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 --- configure.in (revision 376554) +++ configure.in (revision 376555) @@ -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