diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2003-10-22 Ettore Perazzoli <ettore@ximian.com> + + * 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 <dobey@ximian.com> * 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 |