From: Tilman Sauerbeck Date: Fri, 24 Nov 2006 14:43:39 +0000 (+0100) Subject: Fixed evaluation of the disable-build-docs argument. X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e8e6debac39864450c0a69633086ad92459c25e;p=free-sw%2Fxcb%2Flibxcb Fixed evaluation of the disable-build-docs argument. Now at least enable_build_docs is set correctly. --- diff --git a/acinclude.m4 b/acinclude.m4 index 186873c..e85ea5a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -44,7 +44,7 @@ AC_DEFUN([AM_CHECK_DOXYGEN], AC_HELP_STRING( [--disable-build-docs], [Disable the build of the documentation]), - [if test "${disable_build_docs}" = "yes" ; then + [if test x"$enableval" != x"yes" ; then enable_build_docs="no" else enable_build_docs="yes"