From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway32.websitewelcome.com (gateway32.websitewelcome.com [192.185.145.12]) by sourceware.org (Postfix) with ESMTPS id 09544385DC30 for ; Sat, 5 Jun 2021 15:27:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 09544385DC30 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tromey.com Received: from cm16.websitewelcome.com (cm16.websitewelcome.com [100.42.49.19]) by gateway32.websitewelcome.com (Postfix) with ESMTP id 8ED962BDE12 for ; Sat, 5 Jun 2021 10:27:50 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id pYDGli8KL1iQOpYDGl1iTy; Sat, 05 Jun 2021 10:27:50 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject: Cc:To:From:Sender:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=De2Xl/rrUC4e3ZyObu9D3yaUBt1GEynRGUF3Mprs5wg=; b=GY+zdq3NV/647M8xIT0HmajeJu VyYSQ6iLTr4S9ueKUYLbVQ7BDs9V6hKbonSR7sGClJHrhOcf5uqP4jDxX5cLpDlq6VaYRDcrRjimb +G+jjo3Kjpn2NCOU2+sO9FaAj; Received: from 75-166-132-3.hlrn.qwest.net ([75.166.132.3]:40012 helo=localhost.localdomain) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1lpYDG-000rUt-CY; Sat, 05 Jun 2021 09:27:50 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [pushed] Really fix data-directory/Makefile rebuilding Date: Sat, 5 Jun 2021 09:27:48 -0600 Message-Id: <20210605152748.2436465-1-tom@tromey.com> X-Mailer: git-send-email 2.26.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 75.166.132.3 X-Source-L: No X-Exim-ID: 1lpYDG-000rUt-CY X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 75-166-132-3.hlrn.qwest.net (localhost.localdomain) [75.166.132.3]:40012 X-Source-Auth: tom+tromey.com X-Email-Count: 2 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-3032.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, JMQ_SPF_NEUTRAL, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL, 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: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jun 2021 15:27:52 -0000 Oops, I botched the last patch to fix data-directory/Makefile rebuilding, by copying the config.status line and forgetting to update the directory name. This one fixes the problem for real. gdb/ChangeLog 2021-06-05 Tom Tromey * data-directory/Makefile.in (Makefile): Use correct directory name. --- gdb/ChangeLog | 5 +++++ gdb/data-directory/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/data-directory/Makefile.in b/gdb/data-directory/Makefile.in index e1f3cd21a6c..888325f974e 100644 --- a/gdb/data-directory/Makefile.in +++ b/gdb/data-directory/Makefile.in @@ -411,7 +411,7 @@ clean-info: MAKEOVERRIDES= Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd .. && $(SHELL) ./config.status testsuite/Makefile + cd .. && $(SHELL) ./config.status data-directory/Makefile # Disable implicit make rules. include $(srcdir)/../disable-implicit-rules.mk -- 2.26.3