Skip to content

Commit

Permalink
fix bug in python checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovescovi committed Aug 17, 2013
1 parent 8c9f3a2 commit 19a50cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes"])
dnl ========================
dnl Checks for pypresagemate
dnl ========================
if "$PYTHON" != :
if test "$PYTHON" != :
then
AC_MSG_CHECKING(for pyatspi module)
$PYTHON -c "import pyatspi" 2&>/dev/null
Expand Down Expand Up @@ -341,7 +341,7 @@ AM_CONDITIONAL([ENABLE_PYPRESAGEMATE], [test "x$enable_pypresagemate" = "xyes"])
dnl =====================
dnl Checks for pyprompter
dnl =====================
if "$PYTHON" != :
if test "$PYTHON" != :
then
AC_MSG_CHECKING(for python wx module)
$PYTHON -c "import wx" 2&>/dev/null
Expand Down

0 comments on commit 19a50cc

Please sign in to comment.