From b79ad6eabc662867de9e91254ae391fdd08c8428 Mon Sep 17 00:00:00 2001 From: Kevin Coffman Date: Thu, 8 Feb 2007 17:26:59 -0500 Subject: [PATCH 1/1] Add AM_MAINTAINER_MODE to configure.in Signed-off-by: Kevin Coffman As requested by "Steinar H. Gunderson" , add AM_MAINTAINER_MODE to configure.in. See the description of this macro below: `AM_MAINTAINER_MODE' disables the so called "rebuild rules" bys default. If you have `AM_MAINTAINER_MODE' in `configure.ac', and run `./configure && make', then `make' will *never* attempt to rebuild `configure', `Makefile.in's, Lex or Yacc outputs, etc. I.e., this disables build rules for files which are usually distributed and that users should normally not have to update. If you run `./configure --enable-maintainer-mode', then these rebuild rules will be active. Signed-off-by: Neil Brown --- configure.in | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.in b/configure.in index 757ebb8..99adee8 100644 --- a/configure.in +++ b/configure.in @@ -8,6 +8,7 @@ AC_CONFIG_MACRO_DIR(aclocal) AM_INIT_AUTOMAKE AC_PREREQ(2.59) AC_PREFIX_DEFAULT(/usr) +AM_MAINTAINER_MODE dnl ************************************************************* dnl * Define the set of applicable options -- 2.39.2