diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 05:49:02 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 05:49:02 +0800 |
commit | 8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716 (patch) | |
tree | c6af7d9f7e6259a6af5d000b757c1f5b7e45ed6f /configure.in | |
parent | dc6bea5487edfaa18776380317d3a1af9181ea4f (diff) | |
download | gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar.gz gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar.bz2 gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar.lz gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar.xz gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.tar.zst gsoc2013-evolution-8f39c7b6f5e0c2741d4a371cd39d13d5d35cb716.zip |
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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
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 |