From patchwork Wed Nov 13 03:26:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Simon Marchi (Code Review)" X-Patchwork-Id: 35855 Received: (qmail 33728 invoked by alias); 13 Nov 2019 03:26:42 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 33600 invoked by uid 89); 13 Nov 2019 03:26:41 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3 autolearn=ham version=3.3.1 spammy=HX-Languages-Length:1717 X-HELO: mx1.osci.io Received: from polly.osci.io (HELO mx1.osci.io) (8.43.85.229) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 13 Nov 2019 03:26:40 +0000 Received: by mx1.osci.io (Postfix, from userid 994) id 975A3201E8; Tue, 12 Nov 2019 22:26:35 -0500 (EST) Received: from gnutoolchain-gerrit.osci.io (gnutoolchain-gerrit.osci.io [IPv6:2620:52:3:1:5054:ff:fe06:16ca]) by mx1.osci.io (Postfix) with ESMTP id 2EB4320322; Tue, 12 Nov 2019 22:26:35 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by gnutoolchain-gerrit.osci.io (Postfix) with ESMTP id 21E4A28171; Tue, 12 Nov 2019 22:26:31 -0500 (EST) X-Gerrit-PatchSet: 2 Date: Tue, 12 Nov 2019 22:26:31 -0500 From: "Sourceware to Gerrit sync (Code Review)" To: Christian Biesinger , gdb-patches@sourceware.org Cc: Simon Marchi Auto-Submitted: auto-generated X-Gerrit-MessageType: merged Subject: [pushed] gnulib: Fix path to import/Makefile{,.in} X-Gerrit-Change-Id: Ib7f6a319ee764d20072e38911766ca7032d6ca8e X-Gerrit-Change-Number: 621 X-Gerrit-ChangeURL: X-Gerrit-Commit: 17298d65f05d18f04b864f6e6d35fccc89c0d607 In-Reply-To: References: Reply-To: noreply@gnutoolchain-gerrit.osci.io, simon.marchi@polymtl.ca, cbiesinger@google.com, gdb-patches@sourceware.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/3.0.3-76-gf8b6da0ab5 Message-Id: <20191113032631.21E4A28171@gnutoolchain-gerrit.osci.io> Sourceware to Gerrit sync has submitted this change. Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/621 ...................................................................... gnulib: Fix path to import/Makefile{,.in} I don't know why this path is what it is but it is clearly wrong. gnulib/ChangeLog: 2019-11-12 Christian Biesinger * Makefile.in: Fix path to say import/ instead of gnulib/. Change-Id: Ib7f6a319ee764d20072e38911766ca7032d6ca8e --- M gnulib/ChangeLog M gnulib/Makefile.in 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gnulib/ChangeLog b/gnulib/ChangeLog index af12d75..67b8dfd 100644 --- a/gnulib/ChangeLog +++ b/gnulib/ChangeLog @@ -1,3 +1,7 @@ +2019-11-12 Christian Biesinger + + * Makefile.in: Fix path to say import/ instead of gnulib/. + 2019-11-06 Christian Biesinger * config.in: Regenerate. diff --git a/gnulib/Makefile.in b/gnulib/Makefile.in index c42bb23..a9879ed 100644 --- a/gnulib/Makefile.in +++ b/gnulib/Makefile.in @@ -180,8 +180,8 @@ CONFIG_HEADERS= \ $(SHELL) config.status -gnulib/Makefile: gnulib/Makefile.in config.status - CONFIG_FILES="gnulib/Makefile" \ +import/Makefile: import/Makefile.in config.status + CONFIG_FILES="import/Makefile" \ CONFIG_COMMANDS="depfiles" \ CONFIG_HEADERS= \ CONFIG_LINKS= \