summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarko Myllynen <myllynen@redhat.com>2011-09-23 10:03:10 +0300
committerStephen Gallagher <sgallagh@redhat.com>2011-09-28 09:08:45 -0400
commit23d46227e8b7cc54fdb72b5c258cfe7fcda70861 (patch)
tree111fd505031fb2b1ae152065ad7bc04bca7cd626
parentd46fc2f723d2bfe497b71db7c2b7991335c97f3d (diff)
downloadsssd_unused-23d46227e8b7cc54fdb72b5c258cfe7fcda70861.tar.gz
sssd_unused-23d46227e8b7cc54fdb72b5c258cfe7fcda70861.tar.xz
sssd_unused-23d46227e8b7cc54fdb72b5c258cfe7fcda70861.zip
Unbreak ./configure
./configure at least from 1.5.13 is failing on Ubuntu Oneiric. The node ``Conditionals'' of automake manual states: 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'. So the trick is to run AM_CONDITIONAL unconditionally.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 07941041..6ae664a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -146,8 +146,8 @@ if test x$HAVE_MANPAGES != x; then
[http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
[Docbook XSL templates])
AC_CHECK_PROG([PO4A],[po4a],[po4a],[no])
- AM_CONDITIONAL([HAVE_PO4A], [test "x$PO4A" != "xno"])
fi
+AM_CONDITIONAL([HAVE_PO4A], [test "x$PO4A" != "xno"])
if test x$HAVE_PYTHON_BINDINGS != x; then
AM_PATH_PYTHON([2.4])