# HG changeset patch # User Etan Reisner # Date 1189557019 0 # Node ID a25604fbfa92ba0a5e5baeff23c440a35ddef5c0 # Parent b8b2abeb71a72fd8c9d142cd69f87fb8f0543141 Fix the capitalization of the python variable in a configure.ac check, I believe this fixes #2826. diff -r b8b2abeb71a7 -r a25604fbfa92 configure.ac --- a/configure.ac Tue Sep 11 23:21:07 2007 +0000 +++ b/configure.ac Wed Sep 12 00:30:19 2007 +0000 @@ -1187,7 +1187,7 @@ AC_PATH_PROG([PYTHON], [python], [no]) fi - if test x"$python" = x"no" ; then + if test x"$PYTHON" = x"no" ; then AC_MSG_WARN([python interpreter not found in your path]) enable_dbus=no fi