From patchwork Tue Feb 16 12:01:00 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Naohiro Tamura X-Patchwork-Id: 1440899 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=libc-alpha-bounces@sourceware.org; receiver=) Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Dg02f1Kxqz9sVJ for ; Tue, 16 Feb 2021 23:02:18 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 669CF39724B2; Tue, 16 Feb 2021 12:02:15 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa5.hc1455-7.c3s2.iphmx.com (esa5.hc1455-7.c3s2.iphmx.com [68.232.139.130]) by sourceware.org (Postfix) with ESMTPS id 419713971C2D for ; Tue, 16 Feb 2021 12:02:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 419713971C2D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=fujitsu.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=naohirot@fujitsu.com IronPort-SDR: EIph/fV9ithk+lioNjeea4Zm/mvDIZ37kJGwmMYNncs50Tr56qYbKhZXWnltk16vQfG2H/gvw8 0J+cxdIAqWzsWT+LKlb8JsNwRCDv3dYslje+RksvjqzENtoCqp8r+GqAgGatLlz6oZOpzN1Als aWZ5624Yj0tpvw4UIp0oU0CyJpi2FSh6IaQLWVCzqUk4t0Ka5UrsPXW7VyMr5zlxhfI3awL3uT J9VlwYsxw6Lbgo2c+K8Eu3+9JqPqzWlqqosfHr98RZyvryEJCHM8lRbckND7OeYabW7SfPATql eS0= X-IronPort-AV: E=McAfee;i="6000,8403,9896"; a="19451886" X-IronPort-AV: E=Sophos;i="5.81,183,1610377200"; d="scan'208";a="19451886" Received: from unknown (HELO yto-r1.gw.nic.fujitsu.com) ([218.44.52.217]) by esa5.hc1455-7.c3s2.iphmx.com with ESMTP; 16 Feb 2021 21:02:12 +0900 Received: from yto-m3.gw.nic.fujitsu.com (yto-nat-yto-m3.gw.nic.fujitsu.com [192.168.83.66]) by yto-r1.gw.nic.fujitsu.com (Postfix) with ESMTP id DFFB6EC7E5 for ; Tue, 16 Feb 2021 21:02:10 +0900 (JST) Received: from m3051.s.css.fujitsu.com (m3051.s.css.fujitsu.com [10.134.21.209]) by yto-m3.gw.nic.fujitsu.com (Postfix) with ESMTP id 39CED15592 for ; Tue, 16 Feb 2021 21:02:10 +0900 (JST) Received: from bionic.lxd (unknown [10.126.53.116]) by m3051.s.css.fujitsu.com (Postfix) with ESMTP id 2D57C387; Tue, 16 Feb 2021 21:02:10 +0900 (JST) From: Naohiro Tamura To: libc-alpha@sourceware.org Subject: [PATCH 3/3] Removed obsolete AC_CHECK_TOOL_PREFIX Date: Tue, 16 Feb 2021 12:01:00 +0000 Message-Id: <20210216120100.213653-1-naohirot@fujitsu.com> X-Mailer: git-send-email 2.17.1 X-TM-AS-GCONF: 00 X-Spam-Status: No, score=-13.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" This patch removed obsolete AC_CHECK_TOOL_PREFIX. It has been confirmed that AC_CHECK_TOOL_PREFIX is defined as NOP in GNU 'autoconf' 2.69 [1], so we can safely remove it. The 'configure' file has been deleted one blank line by the 'autoconf' 2.69 command . [1] autoconf-2.69/share/autoconf/autoconf/programs.m4 181 # AC_CHECK_TOOL_PREFIX 182 # -------------------- 183 AU_DEFUN([AC_CHECK_TOOL_PREFIX]) --- configure | 1 - configure.ac | 1 - 2 files changed, 2 deletions(-) diff --git a/configure b/configure index 1dc3af60b4..37cef37413 100755 --- a/configure +++ b/configure @@ -4732,7 +4732,6 @@ fi fi # These programs are version sensitive. - for ac_prog in gnumake gmake make do # Extract the first word of "$ac_prog", so it can be a program name with args. diff --git a/configure.ac b/configure.ac index b7f6f8f008..a20c759241 100644 --- a/configure.ac +++ b/configure.ac @@ -993,7 +993,6 @@ else fi # These programs are version sensitive. -AC_CHECK_TOOL_PREFIX AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version, [GNU Make[^0-9]*\([0-9][0-9.]*\)], [[4-9].* | [1-9][0-9]*], critic_missing="$critic_missing make")