From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa3.mentor.iphmx.com (esa3.mentor.iphmx.com [68.232.137.180]) by sourceware.org (Postfix) with ESMTPS id D31D93857038 for ; Mon, 8 May 2023 14:07:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D31D93857038 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com X-IronPort-AV: E=Sophos;i="5.99,259,1677571200"; d="scan'208,223";a="4622826" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa3.mentor.iphmx.com with ESMTP; 08 May 2023 06:07:00 -0800 IronPort-SDR: TBjjZjKwQpVZccLDb+f1RkUtHw7VigwVdCkov4J1eO+gihw2rNT4ksAhDFuJjgMduHCd/7zT1X 7JhnZyCrHlS3cSraRsIUgz8EU69suz3KRJbSGDHMzMDxvA4h//DHw1f3cXLku9OHk7e3KrljuI G3F7QsT2SkUNCY+5ZOCbTzaS/zkNksz70yqxfospDNiHDF0fSlcHc+oXzlTq8Yah760iHQ72rO fDwTnCbblPxx6KXqzzFPkn9ewJ5RnmkK4Grxf6vq2C4iH6zXfUiePtAqjYv/yHwVQUIl349o4s 4Q8= From: Thomas Schwinge To: Gaius Mulley , Subject: libgm2: Remove 'autogen.sh' (was: libgm2: Adjust 'autogen.sh' to 'ACLOCAL_AMFLAGS', and simplify) In-Reply-To: <87edomeii7.fsf@debian> References: <87cz4aqj2k.fsf@dirichlet.schwinge.homeip.net> <87edomeii7.fsf@debian> User-Agent: Notmuch/0.29.3+94~g74c3f1b (https://notmuchmail.org) Emacs/28.2 (x86_64-pc-linux-gnu) Date: Mon, 8 May 2023 16:06:54 +0200 Message-ID: <87a5yeapdt.fsf@euler.schwinge.homeip.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-11.mgc.mentorg.com (139.181.222.11) To svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00,GIT_PATCH_0,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,KAM_SHORT,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --=-=-= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi! On 2023-04-14T13:49:20+0100, Gaius Mulley via Gcc-patches wrote: > Thomas Schwinge writes: >> Separately, given that plain 'autoreconf' works, why have 'autogen.sh' a= t >> all? > > If autoreconf does the same as autogen.sh then yes this can be removed Pushed to master branch commit bd6dbdb196da5aa5c7354e0fc7b0a146237bcf8a "libgm2: Remove 'autogen.sh'". > (or its contents replaced with a call to autoreconf perhaps?), I didn't see any advantage in that. Gr=C3=BC=C3=9Fe Thomas ----------------- Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstra=C3=9Fe 201= , 80634 M=C3=BCnchen; Gesellschaft mit beschr=C3=A4nkter Haftung; Gesch=C3= =A4ftsf=C3=BChrer: Thomas Heurung, Frank Th=C3=BCrauf; Sitz der Gesellschaf= t: M=C3=BCnchen; Registergericht M=C3=BCnchen, HRB 106955 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename="0001-libgm2-Remove-autogen.sh.patch" >From bd6dbdb196da5aa5c7354e0fc7b0a146237bcf8a Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Mon, 8 May 2023 15:53:47 +0200 Subject: [PATCH] libgm2: Remove 'autogen.sh' ... given that plain 'autoreconf' achieves the same. libgm2/ * autogen.sh: Remove. --- libgm2/autogen.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 libgm2/autogen.sh diff --git a/libgm2/autogen.sh b/libgm2/autogen.sh deleted file mode 100755 index 1b144970a570..000000000000 --- a/libgm2/autogen.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -# autogen.sh regenerate the autoconf files. -# Copyright 2013-2022 Free Software Foundation, Inc. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; see the file COPYING3. If not see -# . - -rm -rf autom4te.cache - -# libtoolize -rm -f aclocal.m4 -aclocal -I .. -I ../config -autoreconf -I .. -I ../config -automake --include-deps - -rm -rf autom4te.cache - -exit 0 -- 2.39.2 --=-=-=--