From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 2WAwHuuwmWos+iUAWB0awg (envelope-from ) for ; Thu, 03 Sep 2026 13:39:55 -0400 Received: by simark.ca (Postfix, from userid 112) id 746A61E166; Thu, 03 Sep 2026 13:39:55 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham autolearn_force=no version=4.0.1 Received: from vm01.sourceware.org (vm01.sourceware.org [IPv6:2620:52:6:3111::32]) (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 ESMTPS id 7A6AA1E033 for ; Thu, 03 Sep 2026 13:39:54 -0400 (EDT) Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 4E66D4BB1C1C for ; Thu, 3 Sep 2026 17:39:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4E66D4BB1C1C Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 9CF444B9DB4E for ; Thu, 3 Sep 2026 17:38:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9CF444B9DB4E 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 9CF444B9DB4E Authentication-Results: sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1788457137; cv=none; b=w09BE5Bb/03tg7pRNuLjb00T0cGuvralb2kJ1/BGaOG6nkjpupMF7I1gwtoPa8PlZP9cN/SKYQtTRixniqUzkt5MtkyY05FKZmoyR2nGnab2V+rFwVRdUql9S/aQ+mnZKHT2jWSnjRigVOmIp4w+il6kd3AkbuQBR+HHnKznqAU= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1788457137; c=relaxed/simple; bh=Of1Jz0qqzfz6x9mtkJ8RacBBHnMCwvZELXbBII6zp6s=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=a1drN9FoPPHFkcx+BeUZdDxnABv3inFUembnlt3r+h4Lpg8VPDgmi2M+jhO5jTjhOFh8qgWdRbrK/khHdX8ZuMPGdFunQwvXrn7cfO3AFyEhURRCRunDEpHlnxGOKRHuBffN/YgVTwl8xXZ0QY/Xb8+GNDOGaQCRSoBviby98AE= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9CF444B9DB4E Received: by simark.ca (Postfix) id D0E121E168; Thu, 03 Sep 2026 13:38:56 -0400 (EDT) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH 4/4] gdb: remove stray "b" from the distclean target Date: Thu, 3 Sep 2026 13:37:05 -0400 Message-ID: <20260903173854.416876-5-simon.marchi@efficios.com> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260903173854.416876-1-simon.marchi@efficios.com> References: <20260903173854.416876-1-simon.marchi@efficios.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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~public-inbox=simark.ca@sourceware.org The distclean target removes a file called "b". It looks like a typo introduced in commit 141ec9f67f11 ("Copy gdb-gdb.py to build dir"). That was mine, sorry about that. Change-Id: I17509018e525f6cdbc733a5444b6f463a6f4b6be --- gdb/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index f159a510dd6d..c529c4e1562e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2421,7 +2421,7 @@ clean mostlyclean: $(CONFIG_CLEAN) # functionality described is if the distributed files are unmodified. distclean: clean @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do - rm -f nm.h config.status config.h stamp-h b jit-reader.h stamp-nmh + rm -f nm.h config.status config.h stamp-h jit-reader.h stamp-nmh rm -f gcore.in gstack.in gdb-add-index.in if test "$(srcdir)" != "."; then \ rm -f gdb-gdb.gdb gdb-gdb.py; \ -- 2.55.0