From patchwork Wed Nov 13 02:19:07 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: 35852 Received: (qmail 118453 invoked by alias); 13 Nov 2019 02:19:12 -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 118443 invoked by uid 89); 13 Nov 2019 02:19:12 -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:1260 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 02:19:11 +0000 Received: by mx1.osci.io (Postfix, from userid 994) id D428820456; Tue, 12 Nov 2019 21:19:09 -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 6F92820322; Tue, 12 Nov 2019 21:19:07 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by gnutoolchain-gerrit.osci.io (Postfix) with ESMTP id 4D73120AF6; Tue, 12 Nov 2019 21:19:07 -0500 (EST) X-Gerrit-PatchSet: 1 Date: Tue, 12 Nov 2019 21:19:07 -0500 From: "Christian Biesinger (Code Review)" To: gdb-patches@sourceware.org Cc: Christian Biesinger Message-ID: Auto-Submitted: auto-generated X-Gerrit-MessageType: newchange Subject: [review] gnulib: Fix path to import/Makefile{,.in} X-Gerrit-Change-Id: Ib7f6a319ee764d20072e38911766ca7032d6ca8e X-Gerrit-Change-Number: 621 X-Gerrit-ChangeURL: X-Gerrit-Commit: 6819b2cea95cc3cc0feb9aab24a6d9e61d5d5eaf References: Reply-To: cbiesinger@google.com, cbiesinger@google.com, gdb-patches@sourceware.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/3.0.3-76-gf8b6da0ab5 Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/621 ...................................................................... gnulib: Fix path to import/Makefile{,.in} This is probably (?) a leftover from when gnulib was inside the gdb/ directory. gnulib/ChangeLog: 2019-11-12 Christian Biesinger * Makefile.in: Fix path to say import/ instead of gnulib/. Change-Id: Ib7f6a319ee764d20072e38911766ca7032d6ca8e --- M gnulib/Makefile.in 1 file changed, 2 insertions(+), 2 deletions(-) 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= \