diff options
author | Tomas Chvatal <tchvatal@suse.cz> | 2011-08-22 19:14:22 +0200 |
---|---|---|
committer | Tibby Lickle <tibbylickle@gmail.com> | 2011-08-26 13:13:46 +0100 |
commit | f4415b26c4f41e7db16bb279e8d4f9f54acb7f01 (patch) | |
tree | 0c410e0256a832a7d4045587a4eec162dc4dc3ab | |
parent | d756333e6af97478559bf9aba8e49402a56f627e (diff) |
configure.ac: use yes/no instead of true/false.
Signed-off-by: Tomas Chvatal <tchvatal@suse.cz>
Signed-off-by: Tibby Lickle <tibbylickle@gmail.com>
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index b513082..6ea9934 100644 --- a/configure.ac +++ b/configure.ac @@ -190,10 +190,10 @@ AS_IF([test "x$with_docs" != "xno"], [ AS_IF([test -z "$DOXYGEN"], [ AC_MSG_WARN([*** Could not find doxygen in your PATH.]) AC_MSG_WARN([*** The documentation will not be built.]) - build_docs=false - ], [build_docs=true]) -], [build_docs=false]) -AM_CONDITIONAL([WITH_LIBVISIO_DOCS], [test "x$build_docs" != "xfalse"]) + build_docs=no + ], [build_docs=yes]) +], [build_docs=no]) +AM_CONDITIONAL([WITH_LIBVISIO_DOCS], [test "x$build_docs" != "xno"]) # ===================== # Prepare all .in files |