summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Stachowski <qbast@go2.pl>2005-08-30 16:39:40 +0000
committerJakub Stachowski <qbast@go2.pl>2005-08-30 16:39:40 +0000
commit14e31e958eb9d280cfe544bc3379d19255badd21 (patch)
treef2353af0eef62e76ca905237e4826ba36dc2ece2
parent068ac4c5af4acfc00c385af7f144305978efbba9 (diff)
Fix ./configure: line 23192: xyes: command not found
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@505 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 8732a8f..c369df4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -352,7 +352,7 @@ if test "x$HAVE_PYTHON" = "xyes" ; then
esac],
[HAVE_PYGTK=yes])
- if "x$HAVE_PYGTK" = "xyes" ; then
+ if test "x$HAVE_PYGTK" = "xyes" ; then
AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find Python module gtk)])
fi
@@ -367,7 +367,7 @@ if test "x$HAVE_PYTHON" = "xyes" ; then
esac],
[HAVE_PYTHON_DBUS=yes])
- if "x$HAVE_PYTHON_DBUS" = "xyes"; then
+ if test "x$HAVE_PYTHON_DBUS" = "xyes"; then
AM_CHECK_PYMOD(dbus,,,[AC_MSG_ERROR(Could not find Python module dbus)])
fi