diff options
author | Eric Anholt <eric@anholt.net> | 2009-11-23 11:37:09 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-11-23 11:39:49 +0100 |
commit | 8048efe7e4ca186cb51fee1a31c15c6e48c7db39 (patch) | |
tree | 52d4b2a39a97d8343311b4b3959a284c91d97848 | |
parent | 3181f54ca8a77d7694aaf42a87e5a59986fdbe8e (diff) |
Remove AM_MAINTAINER_MODE stuff.
While it was cargo-culted from many other projects, allowing people to
lose the Makefile regeneration rules is a recipe for disaster. autotools
is apparently discouraging the presence of AM_MAINTAINER_MODE, in a
shocking bout of sanity.
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -9,4 +9,4 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +$srcdir/configure "$@" diff --git a/configure.ac b/configure.ac index a92ccf1..d6e9123 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,6 @@ AC_INIT([hash_table], AC_CONFIG_SRCDIR([Makefile.am]) AM_INIT_AUTOMAKE([dist-bzip2]) -AM_MAINTAINER_MODE AC_PROG_LIBTOOL AC_PROG_CC |