summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTommi Virtanen <tommi.virtanen@dreamhost.com>2011-03-11 14:46:22 -0800
committerTommi Virtanen <tommi.virtanen@dreamhost.com>2011-03-11 14:46:22 -0800
commit289318777c912f6c1bf057309e281472da4a3517 (patch)
treec30e872195905c33f34a1ce0d6c57f39b2115f41 /configure.ac
parent5d0fa63aba48aefb5fb68369aed3483d1669dffc (diff)
downloadceph-289318777c912f6c1bf057309e281472da4a3517.tar.gz
autoconf: Fix typo that made --without-gtk2 not work.
Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3a933f6353a..c5c84ee4e25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -282,7 +282,7 @@ AC_ARG_WITH([gtk2],
[],
[with_gtk2=check])
have_gtk2=no
-AS_IF([test "with_gtk2" != "xno"],
+AS_IF([test "x$with_gtk2" != "xno"],
[PKG_CHECK_MODULES(GTKMM, [gtkmm-2.4 >= 1.0.0],
[have_gtk2=yes
AC_DEFINE([HAVE_GTK2], [1], [we have gtk2])