diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-02-10 12:09:48 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-02-10 12:09:48 +0000 |
commit | ec5aaa0b6957ea66492f96f823e0055aad487467 (patch) | |
tree | 43e0ecd46e736ed309b3524954a6b563020c4faf | |
parent | dd96406afba5884b07b655cd21f89885fb9073d8 (diff) |
Enable Automake maintainer mode by default, but let distros disable itmaintainer-mode-34671
See http://blogs.gnome.org/desrt/2011/09/08/am_maintainer_mode-is-not-cool/
for more information.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=34671
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -101,7 +101,7 @@ else fi if $run_configure; then - $srcdir/configure --enable-maintainer-mode --enable-developer --config-cache "$@" + $srcdir/configure --enable-developer --config-cache "$@" echo echo "Now type 'make' to compile $PROJECT." else diff --git a/configure.ac b/configure.ac index a56ef159..daa86730 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,9 @@ GETTEXT_PACKAGE=dbus-1 AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The name of the gettext domain]) -AM_MAINTAINER_MODE +# By default, rebuild autotools files on demand; only use ./missing if the +# user says --disable-maintainer-mode (some distributions like to do this) +AM_MAINTAINER_MODE([enable]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) |