From afdda377297e9ffd38c4ef344f8338c88c9fc3f1 Mon Sep 17 00:00:00 2001 From: Nikolas Garofil Date: Sun, 19 Jul 2009 23:31:11 +0200 Subject: [PATCH] Fixed a tiny bug in configure.ac.in From the automake docs: "Note that you must arrange for every AM_CONDITIONAL to be invoked every time configure is run -- if AM_CONDITIONAL is run conditionally (e.g., in a shell if statement), then the result will confuse automake." --- configure.ac.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac.in b/configure.ac.in index 46c35795..dbbca22b 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -359,8 +359,8 @@ AC_ARG_ENABLE([xoap], [want_xoap="$enableval"], [want_xoap=no]) # AM_CONDITIONAL(BUILD_WEATHER, test x$want_weather = xyes) +AM_CONDITIONAL(BUILD_XOAP, test x$want_xoap = xyes) if test x$want_weather = xyes; then - AM_CONDITIONAL(BUILD_XOAP, test x$want_xoap = xyes) if test x$want_xoap = xyes; then PKG_CHECK_MODULES([libxml2], libxml-2.0) conky_CFLAGS="$conky_CFLAGS $libxml2_CFLAGS"