From: fredrik Date: Wed, 3 Jan 2007 04:08:10 +0000 (+0000) Subject: Fix typo bug. X-Git-Tag: 0.3~128 X-Git-Url: http://dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=f4e3c478449ac400b7818c02d91c2673c5739b17 Fix typo bug. git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/doldaconnect@799 959494ce-11ee-0310-bf91-de5d638817bd --- diff --git a/configure.in b/configure.in index e87c586..398b02f 100644 --- a/configure.in +++ b/configure.in @@ -73,10 +73,10 @@ fi gtk2ui_msg=No AC_ARG_ENABLE(gtk2ui, [ --enable-gtk2ui Enable the GTK2 user interface]) if test "$enable_gtk2ui" = yes; then - if "$HAS_GTK2" = no; then + if test "$HAS_GTK2" = no; then AC_MSG_ERROR([*** cannot build the GTK2 UI without a GTK2 library]) fi - if "$HAS_LIBXML" = no; then + if test "$HAS_LIBXML" = no; then AC_MSG_ERROR([*** the GTK2 UI needs libxml2]) fi fi