From: Alexander Larsson Date: Mon, 8 Oct 2012 14:57:47 +0000 (+0200) Subject: Fix typo in HAVE_DBUS automake conditional X-Git-Tag: v1.0.0-rc1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53d5ad94c04f23ce8e3d5dd3ab7fad6a77f4f589;p=thirdparty%2Flibvirt.git Fix typo in HAVE_DBUS automake conditional The variable that is set in the script is with_dbus, not have_dbus. --- diff --git a/AUTHORS b/AUTHORS index 0b818b0709..27c4eda775 100644 --- a/AUTHORS +++ b/AUTHORS @@ -267,6 +267,7 @@ Patches have also been contributed by: Dwight Engen liguang Chuck Short + Alexander Larsson [....send patches to get your name here....] diff --git a/configure.ac b/configure.ac index 6d50985cca..767e06cbe3 100644 --- a/configure.ac +++ b/configure.ac @@ -1251,7 +1251,7 @@ if test "$with_dbus" = "yes" ; then LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi -AM_CONDITIONAL([HAVE_DBUS], [test "$have_dbus" = "yes"]) +AM_CONDITIONAL([HAVE_DBUS], [test "$with_dbus" = "yes"]) dnl PolicyKit library