Skip to content

Commit

Permalink
Fixed configure.in to work correctly with bash 3.1.
Browse files Browse the repository at this point in the history
Ref MODPYTHON-122
  • Loading branch information
jgallacher committed Feb 10, 2006
1 parent 71de420 commit 1b58ad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -3035,7 +3035,7 @@ MOD_PYTHON_SO="`pwd`/src/mod_python.so"
# 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
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -287,7 +287,7 @@ MOD_PYTHON_SO="`pwd`/src/mod_python.so"
# 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
Expand Down

0 comments on commit 1b58ad7

Please sign in to comment.