From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 884E73858427 for ; Sat, 5 Feb 2022 07:34:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 884E73858427 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 0599B342DA5; Sat, 5 Feb 2022 07:34:55 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH 6/7] newlib: drop autoconf-2.13 hack Date: Sat, 5 Feb 2022 02:34:35 -0500 Message-Id: <20220205073436.6577-7-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220205073436.6577-1-vapier@gentoo.org> References: <20220205073436.6577-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, 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: Sat, 05 Feb 2022 07:34:57 -0000 We require autoconf-2.69 now, so we don't need this old install hack. --- newlib/acinclude.m4 | 3 --- newlib/configure | 7 ++----- newlib/libc/configure | 7 ++----- newlib/libc/sys/linux/configure | 7 ++----- newlib/libc/sys/linux/linuxthreads/configure | 7 ++----- newlib/libc/sys/linux/linuxthreads/machine/configure | 7 ++----- newlib/libc/sys/linux/linuxthreads/machine/i386/configure | 7 ++----- newlib/libc/sys/linux/machine/configure | 7 ++----- newlib/libc/sys/linux/machine/i386/configure | 7 ++----- newlib/libc/sys/phoenix/configure | 3 --- newlib/libc/sys/phoenix/machine/arm/configure | 3 --- newlib/libc/sys/phoenix/machine/configure | 3 --- newlib/libm/configure | 7 ++----- 13 files changed, 18 insertions(+), 57 deletions(-) diff --git a/newlib/acinclude.m4 b/newlib/acinclude.m4 index 7795e580b715..efbd1b258e7c 100644 --- a/newlib/acinclude.m4 +++ b/newlib/acinclude.m4 @@ -133,9 +133,6 @@ dnl expanding them multiple times. AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AC_PROG_AWK])dnl -# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ -ac_given_INSTALL=$INSTALL - AM_MAINTAINER_MODE . [$]{newlib_basedir}/configure.host -- 2.34.1