From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id MUy6MoRFh2o4pDIAWB0awg (envelope-from ) for ; Thu, 20 Aug 2026 14:20:52 -0400 Received: by simark.ca (Postfix, from userid 112) id CB8371E09E; Thu, 20 Aug 2026 14:20:52 -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 [38.145.34.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 363031E09E for ; Thu, 20 Aug 2026 14:20:52 -0400 (EDT) Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id AFFE94BB1C08 for ; Thu, 20 Aug 2026 18:20:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AFFE94BB1C08 Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 30D654BAE7D6 for ; Thu, 20 Aug 2026 18:20:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 30D654BAE7D6 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 30D654BAE7D6 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=1787250029; cv=none; b=lc0E5wAn43dL55JlxKalFsKp82+QfJ7UpXOJsK2T4fBIVlgc/76FZTb9/0tHJr86/JT111P5d2kSoVOpV7i/BTUEZW2DZ7QNDTedTEdurd4O+12bYX9Be8HCpb1EOo/CN+rRLDirNWOhwVHWY03Y6WIL6gTJ3WbfLj26wwpZk1w= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1787250029; c=relaxed/simple; bh=LFAQpjNpJNrRdKKXevGWRaUu5DNtCauc8zU/wHMfWis=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=KYguQAJHXTH5rM6ulj/9MfsaAj9FBSMrjfsGYLlF1nje6h1/PbBpMcdFXjSPYXVR7j2PR+ik8z22xdXBfm4WqQ2f9czKV7p5wqnl3VsF/RUVJkrbaspC5IvJFPWznmUn233xBm1mCD3fjq/cxeGEajZA/oHuSXEYWAS4FeI6wLg= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 30D654BAE7D6 Received: by simark.ca (Postfix) id AEBB21E033; Thu, 20 Aug 2026 14:20:27 -0400 (EDT) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH 1/2] gdb: remove redundant rm in local-maintainer-clean Date: Thu, 20 Aug 2026 14:20:23 -0400 Message-ID: <20260820182026.745719-1-simon.marchi@efficios.com> X-Mailer: git-send-email 2.55.0 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 local-maintainer-clean target removes a hardcoded list of parser-generator output files, and then removes $(YYFILES) two lines below. $(YYFILES) contains the same list of files, so the first rm is redundant. Remove it. Change-Id: I14d27930953e33d54010d964cb4bb7db4e8323a0 --- gdb/Makefile.in | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 57f384170abf..0457ad7926da 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2441,10 +2441,6 @@ realclean: maintainer-clean local-maintainer-clean: @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." - rm -f c-exp.c \ - cp-name-parser.c \ - ada-lex.c ada-exp.c \ - d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rm -f TAGS rm -f $(YYFILES) rm -f nm.h config.status base-commit: d2102b0d6a95ba3b37204976fb3f6ebd935822fb -- 2.55.0