From 6c4c77971e2c883ef838b08c2b1bec55e0094027 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Mon, 7 Mar 2022 17:22:49 +0100 Subject: [PATCH] build: add the --disable-maintainer-mode option to ./configure By passing --disable-maintainer-mode to ./configure the user can disable autoconf build rules that would cause configure to be rebuilt and rerun. Kind-of-requested-by: Mike Frysinger --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index e88eab00..95e0c2a0 100644 --- a/configure.ac +++ b/configure.ac @@ -20,6 +20,7 @@ AC_INIT([GNU nano], [6.2], [nano-devel@gnu.org], [nano]) AC_CONFIG_SRCDIR([src/nano.c]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([1.14]) +AM_MAINTAINER_MODE([enable]) AC_CONFIG_HEADERS([config.h]) dnl Make sure the ONCE macros are available.