From: Chuck Lever Date: Thu, 23 Jan 2014 16:13:51 +0000 (-0500) Subject: configure: permanently enable maintainer mode X-Git-Tag: libtirpc-0-2-5-rc1~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=518c01c44b00e8941a27924c474c3a35c85fdcd4;p=libtirpc configure: permanently enable maintainer mode I noticed that "make" doesn't run configure again when a patch is applied that changes the build environment. Maintainer mode appears to be disabled by default. Section 27.2 of the Automake manual suggests that disabling Maintainer Mode causes unreliable builds because it removes the guarantee that the build environment is up to date. Remove the configure.ac macro to disable or enable maintainer mode. This leaves Maintainer Mode enabled all the time. Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- diff --git a/configure.ac b/configure.ac index 11df020..10d17ea 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,6 @@ AC_INIT(libtirpc, 0.2.4) AM_INIT_AUTOMAKE([silent-rules]) AM_SILENT_RULES([yes]) -AM_MAINTAINER_MODE AC_CONFIG_SRCDIR([src/auth_des.c]) AC_CONFIG_MACRO_DIR([m4])