From patchwork Mon Mar 11 19:32:40 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 87052 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id F186A3858CD1 for ; Mon, 11 Mar 2024 19:33:28 +0000 (GMT) X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 9E6CD3858D20 for ; Mon, 11 Mar 2024 19:33:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9E6CD3858D20 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=efficios.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=efficios.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 9E6CD3858D20 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710185588; cv=none; b=Oy6IZjaKsG334jYGTlYnRFk0ulJNwc9u0SqlJcJu9tewu5jLDywWjfHF/OXnovNjaxLmdbhAiaVbKG+KtzrucILmMaCpeGyHvibOxYnOr94YG49I+jUeSpwKwu90RnKsoutrkS+FHJHkpSkY/wEN7RIWOn7BAmIiY2YnFrCzN6Q= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710185588; c=relaxed/simple; bh=mH4I4oXyJAmz5toZ0uuSCujd61U0K+ZSgZ5/F1IzN7E=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=vEHAu7KKrbAmaDPVzTrKRzm0LZDVKEafo59MSbLLiFXrtJVzbFMkAFIuXXQJrrVpEFFc9P5wt9ilpnIsjb0kqHyBjIFVB2X8JM6faQEk5n0tAo9L4/om9lodWN2heIymMhk+WAYZg34tIqmp4IsbjiVAQa/JUrv70kaddlB8cSQ= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from smarchi-efficios.internal.efficios.com (192-222-143-198.qc.cable.ebox.net [192.222.143.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 0C18D1E0AC; Mon, 11 Mar 2024 15:33:06 -0400 (EDT) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH] gdb/Makefile.in: remove ACLOCAL_AMFLAGS Date: Mon, 11 Mar 2024 15:32:40 -0400 Message-ID: <20240311193243.335656-1-simon.marchi@efficios.com> X-Mailer: git-send-email 2.44.0 MIME-Version: 1.0 X-Spam-Status: No, score=-3496.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_SOFTFAIL, 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 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org aclocal picks up the relevant include paths from AC_CONFIG_MACRO_DIRS in configure.ac, so there's no need to pass `-I ../config` here. Passing `-I ../config` is actually annoying, because it makes the output different between when the update is triggered by the maintainer mode and when aclocal or autoreconf is ran with no special flags. The difference in the output is due to the order of include paths being different. Change-Id: I2c963876516570842f20b4a6a470867e7a941006 --- gdb/Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) base-commit: 1320cb92da10d194a5bb0c34ce552dffa52faeb5 diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0e0f19c40c9f..e83fbc5d146a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2317,7 +2317,6 @@ config.status: $(srcdir)/configure configure.nat configure.tgt configure.host .. $(SHELL) config.status --recheck ACLOCAL = aclocal -ACLOCAL_AMFLAGS = -I ../config # Keep these in sync with the includes in acinclude.m4. aclocal_m4_deps = \ @@ -2345,7 +2344,7 @@ aclocal_m4_deps = \ ../config/ax_pthread.m4 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + cd $(srcdir) && $(ACLOCAL) AUTOCONF = autoconf configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4