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:39 -0400
commitbb94b50538ccd3351567916ae18499013ca061c3 (patch)
tree63788094cc22730666a8c5bbf59248ed083591e1
parent77861bc2335233b35021cebb22c705133c1e8654 (diff)
downloadsssd_unused-bb94b50538ccd3351567916ae18499013ca061c3.tar.gz
sssd_unused-bb94b50538ccd3351567916ae18499013ca061c3.tar.xz
sssd_unused-bb94b50538ccd3351567916ae18499013ca061c3.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 958fa143..19ee498a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,8 +144,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])