Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 123852 | Differences between
and this patch

Collapse All | Expand All

(-)configure (-1 / +1 lines)
Lines 3035-3041 Link Here
3035
# get the mod_python version
3035
# get the mod_python version
3036
3036
3037
MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
3037
MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
3038
MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`
3038
MP_VERSION=`echo $MP_VERSION | sed 's/"//g'`
3039
3039
3040
# get --with-python-src. The python src is required to generate the documentation
3040
# get --with-python-src. The python src is required to generate the documentation
3041
# It is not required to compile or install mod_python itself
3041
# It is not required to compile or install mod_python itself
(-)configure.in (-1 / +1 lines)
Lines 287-293 Link Here
287
# get the mod_python version
287
# get the mod_python version
288
AC_SUBST(MP_VERSION)
288
AC_SUBST(MP_VERSION)
289
MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
289
MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
290
MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`                                      
290
MP_VERSION=`echo $MP_VERSION | sed 's/["]//g'`
291
291
292
# get --with-python-src. The python src is required to generate the documentation
292
# get --with-python-src. The python src is required to generate the documentation
293
# It is not required to compile or install mod_python itself
293
# It is not required to compile or install mod_python itself

Return to bug 123852