From 53d5ad94c04f23ce8e3d5dd3ab7fad6a77f4f589 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 8 Oct 2012 16:57:47 +0200 Subject: [PATCH] Fix typo in HAVE_DBUS automake conditional The variable that is set in the script is with_dbus, not have_dbus. --- AUTHORS | 1 + configure.ac | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 0b818b070..27c4eda77 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 6d50985cc..767e06cbe 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 -- 2.39.5