From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 42368 invoked by alias); 17 Jul 2015 03:38:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 42342 invoked by uid 89); 17 Jul 2015 03:38:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-oi0-f42.google.com Received: from mail-oi0-f42.google.com (HELO mail-oi0-f42.google.com) (209.85.218.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 17 Jul 2015 03:38:17 +0000 Received: by oibn4 with SMTP id n4so63510178oib.3; Thu, 16 Jul 2015 20:38:15 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.60.45.104 with SMTP id l8mr12353459oem.61.1437104295669; Thu, 16 Jul 2015 20:38:15 -0700 (PDT) Received: by 10.76.160.68 with HTTP; Thu, 16 Jul 2015 20:38:15 -0700 (PDT) In-Reply-To: References: Date: Fri, 17 Jul 2015 03:38:00 -0000 Message-ID: Subject: Re: [PATCH] [4/14] Completes renaming of configure.in files to .ac From: "H.J. Lu" To: Michael Darling Cc: Binutils , GDB , GCC Patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00501.txt.bz2 On Thu, Jul 16, 2015 at 8:09 PM, Michael Darling wrote: > (I was requested by binutils to split my May 24 and Jul 16 patches > into separate files for each binutils-gdb main subdirectory.) > > Combined builds has been broken for about 10 months, because some binutils > configure.in files were renamed to configure.ac, but gcc's references to them > were not updated. Fixing gcc's references to them is much easier by renaming > the few straggling configure.in files to configure.ac. gcc's configure.in > files were entirely renamed to configure.ac some time ago. There are > corresponding patches submitted to gcc, which updates all references to > binutils-gdb configure.in files to configure.ac, which is what ultimately > fixes combined builds. > > See PR binutils-gdb/binutils/18450 and gcc/other/66259. > > Signed-off by: Michael Darling > --- > config/ChangeLog | 8 ++++++++ > config/gettext.m4 | 4 ++-- > config/po.m4 | 4 ++-- > config/stdint.m4 | 2 +- > config/tcl.m4 | 4 ++-- > 5 files changed, 15 insertions(+), 7 deletions(-) Since all configure files are generated from them, this patch must be checked in first. But some of them are imported and some imported packages still use configure.in, not configure.ac. What is the real value of changing "configure.in" in comments/messages to "configure.ac" when both are used in packages? -- H.J.