summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2006-11-24 15:43:39 +0100
committerJamey Sharp <jamey@minilop.net>2006-11-27 21:46:45 -0800
commit2e8e6debac39864450c0a69633086ad92459c25e (patch)
tree56c9419ed796bb49aca53c618efd5823b03c03b0 /acinclude.m4
parent19dfaf93ac1b5e9d3ce09b1f8e2338e53a5d7324 (diff)
Fixed evaluation of the disable-build-docs argument.
Now at least enable_build_docs is set correctly.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
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"