diff options
author | Fabian Groffen <grobian@gentoo.org> | 2019-05-10 10:31:49 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2019-05-10 10:31:49 +0200 |
commit | 6931c9525eaba81c17f828a390485d84968ac30a (patch) | |
tree | f6b248452d647a399479281b506d9b135f51f4c3 /configure.ac | |
parent | qmerge: implement keepdir and dodir, bug #682316 (diff) | |
download | portage-utils-6931c9525eaba81c17f828a390485d84968ac30a.tar.gz portage-utils-6931c9525eaba81c17f828a390485d84968ac30a.tar.bz2 portage-utils-6931c9525eaba81c17f828a390485d84968ac30a.zip |
configure: add AM_MAINTAINER_MODE
default to enabled for git, default to disabled for releases
use --disable-maintainer-mode with travis instead of touching files
main developers should have the setup to regenerate all files properly,
configure flag can be used by those that don't need/want the regen deps
Bug: https://bugs.gentoo.org/682316
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a0015d3a..43a4609b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,7 @@ AC_PREREQ([2.65]) AC_INIT([portage-utils], [git]) AM_INIT_AUTOMAKE([1.11 dist-xz no-dist-gzip silent-rules -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm +AM_MAINTAINER_MODE([enable]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([autotools/m4]) |