From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 75CB2385E007 for ; Tue, 22 Feb 2022 22:11:43 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 75CB2385E007 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 4FB5934317B; Tue, 22 Feb 2022 22:11:42 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Cc: Richard.Earnshaw@foss.arm.com Subject: [PATCH/committed] libgloss: enable maintainer mode support Date: Tue, 22 Feb 2022 17:11:38 -0500 Message-Id: <20220222221138.29775-1-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <6e6ec1c8-70b3-5cc2-3b06-60f516a44ed0@foss.arm.com> References: <6e6ec1c8-70b3-5cc2-3b06-60f516a44ed0@foss.arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Feb 2022 22:11:48 -0000 Use AM_MAINTAINER_MODE so devs have to opt-in to automatic rebuilds of autotools. This matches what newlib (and most every other GNU toolchain package) does with automake. --- libgloss/Makefile.in | 9 +++++---- libgloss/aclocal.m4 | 36 ++++++++++++++++++++++++++++++++++++ libgloss/configure | 34 ++++++++++++++++++++++++++++++++++ libgloss/configure.ac | 1 + 4 files changed, 76 insertions(+), 4 deletions(-) diff --git a/libgloss/configure.ac b/libgloss/configure.ac index b5a0fce08c9b..ec2a49e03704 100644 --- a/libgloss/configure.ac +++ b/libgloss/configure.ac @@ -12,6 +12,7 @@ AC_PROG_INSTALL AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([foreign no-dist no-define subdir-objects 1.15.1]) +AM_MAINTAINER_MODE AM_SILENT_RULES(yes) if test -z "${with_multisubdir}"; then -- 2.34.1