From: Ralf Corsépius Date: Fri, 24 Aug 2007 04:04:43 +0000 (+0200) Subject: Use with_python instead of withval. X-Git-Tag: rpm-4.6.0-rc1~2016 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6abbcf059df2ec8adfb84aa9a742498e5f0dce1;p=platform%2Fupstream%2Frpm.git Use with_python instead of withval. --- diff --git a/configure.ac b/configure.ac index 20bc951..32b787c 100644 --- a/configure.ac +++ b/configure.ac @@ -764,12 +764,12 @@ dnl Auto-detect which python bindings should be built. dnl AC_ARG_WITH(python, [ --with-python build rpm python bindings ]) -if test "{$withval}" = "no"; then +if test "{$with_python}" = "no"; then pythonbin="" -elif test "${withval}" = "yes"; then +elif test "${with_python}" = "yes"; then pythonbin="python" else - pythonbin="python$withval" + pythonbin="python$with_python" fi AC_PATH_PROG(__PYTHON, "${pythonbin}")