comparison configure.ac @ 19925:a25604fbfa92

Fix the capitalization of the python variable in a configure.ac check, I believe this fixes #2826.
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 12 Sep 2007 00:30:19 +0000
parents fd3376b85878
children 34db2e1804e0
comparison
equal deleted inserted replaced
19924:b8b2abeb71a7 19925:a25604fbfa92
1185 if test "x$enable_dbus" = "xyes" ; then 1185 if test "x$enable_dbus" = "xyes" ; then
1186 if test -z "$PYTHON" -o "x$PYTHON" = "xyes"; then 1186 if test -z "$PYTHON" -o "x$PYTHON" = "xyes"; then
1187 AC_PATH_PROG([PYTHON], [python], [no]) 1187 AC_PATH_PROG([PYTHON], [python], [no])
1188 fi 1188 fi
1189 1189
1190 if test x"$python" = x"no" ; then 1190 if test x"$PYTHON" = x"no" ; then
1191 AC_MSG_WARN([python interpreter not found in your path]) 1191 AC_MSG_WARN([python interpreter not found in your path])
1192 enable_dbus=no 1192 enable_dbus=no
1193 fi 1193 fi
1194 fi 1194 fi
1195 1195