diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2011-10-13 15:56:46 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-10-14 08:57:56 -0400 |
commit | 8b1f525acd20f36c836e827de3c251088961c5d9 (patch) | |
tree | 21db1d9e5d9b969641a4a3a2ad72b70a1a2bf37b /configure.ac | |
parent | c1fcc832ccfc237caac8b99be238cf2d598f908c (diff) | |
download | sssd-8b1f525acd20f36c836e827de3c251088961c5d9.tar.gz sssd-8b1f525acd20f36c836e827de3c251088961c5d9.tar.xz sssd-8b1f525acd20f36c836e827de3c251088961c5d9.zip |
BUILDSYS: Fix --without-manpages
We weren't honoring the --without-manpages option, and this was
causing builds to break.
Note: 'make dist[check]' will not work if you have configured with
--without-manpages because it will not be able to pre-generate the
translation files necessary for tarball release.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 19ee498a4..21484ca8d 100644 --- a/configure.ac +++ b/configure.ac @@ -145,6 +145,7 @@ if test x$HAVE_MANPAGES != x; then [Docbook XSL templates]) AC_CHECK_PROG([PO4A],[po4a],[po4a],[no]) fi +AM_CONDITIONAL([HAVE_MANPAGES], [test "x$HAVE_MANPAGES" != "x"]) AM_CONDITIONAL([HAVE_PO4A], [test "x$PO4A" != "xno"]) if test x$HAVE_PYTHON_BINDINGS != x; then |