From 8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 22 Oct 2003 21:49:02 +0000 Subject: Set $ACLOCAL to have the $ACLOCAL_FLAGS in it, so it doesn't fail to regenerate the files if you run make without a manual autogen after making changes to configure.in and friends. [Many thanks to Marco Pesenti Gritti for pointing out the fix to me.] svn path=/trunk/; revision=23018 --- ChangeLog | 8 ++++++++ configure.in | 3 +++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7b91537fb7..caa4f07a8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-10-22 Ettore Perazzoli + + * configure.in: Set $ACLOCAL to have the $ACLOCAL_FLAGS in it, so + it doesn't fail to regenerate the files if you run make without a + manual autogen after making changes to configure.in and friends. + [Many thanks to Marco Pesenti Gritti for pointing out the fix to + me.] + 2003-10-22 Rodney Dawes * configure.in: Require ORBit 2.8.0 or newer for threading diff --git a/configure.in b/configure.in index 1784c35815..81478e81f0 100644 --- a/configure.in +++ b/configure.in @@ -10,6 +10,9 @@ AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST AC_DEFINE_UNQUOTED(VERSION_COMMENT, "", [Define if you want a comment appended to the version number]) +dnl Put the ACLOCAL flags in the Makefile +ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" + dnl Initialize maintainer mode AM_MAINTAINER_MODE -- cgit