[PATCH] build: enable maintainer mode
Mike Frysinger <[email protected]>
| Newsgroups | gmane.editors.nano.devel |
|---|---|
| Message-ID | <[email protected]> |
This disable regeneration of autotools by default (e.g. autoconf & automake) when running `make`. The few maintainers that want this can re-enable with `./configure --enable-maintainer-mode`. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index f80be59459c4..6f25728865e4 100644 --- a/configure.ac +++ b/configure.ac @@ -20,6 +20,7 @@ AC_INIT([GNU nano], [6.2], [[email protected]], [nano]) AC_CONFIG_SRCDIR([src/nano.c]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([1.14]) +AM_MAINTAINER_MODE AC_CONFIG_HEADERS([config.h]) dnl Make sure the ONCE macros are available. -- 2.34.1