From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id 4C151385BF81 for ; Wed, 23 Feb 2022 11:26:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4C151385BF81 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=foss.arm.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=foss.arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C1FB1106F; Wed, 23 Feb 2022 03:26:05 -0800 (PST) Received: from [10.57.15.132] (unknown [10.57.15.132]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 40A323F70D; Wed, 23 Feb 2022 03:26:05 -0800 (PST) Message-ID: <42b0ce0a-3b0c-0f65-4029-89633c4d642f@foss.arm.com> Date: Wed, 23 Feb 2022 11:26:03 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH/committed] libgloss: enable maintainer mode support Content-Language: en-GB To: Mike Frysinger , newlib@sourceware.org References: <6e6ec1c8-70b3-5cc2-3b06-60f516a44ed0@foss.arm.com> <20220222221138.29775-1-vapier@gentoo.org> From: Richard Earnshaw In-Reply-To: <20220222221138.29775-1-vapier@gentoo.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3497.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, NICE_REPLY_A, SPF_HELO_NONE, SPF_NONE, 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: Wed, 23 Feb 2022 11:26:12 -0000 Thanks, Mike. On 22/02/2022 22:11, Mike Frysinger wrote: > 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