From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id B5CF73858438; Wed, 27 Oct 2021 15:44:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B5CF73858438 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] libgloss/riscv: Fix hard coded reference to configure.in after rename X-Act-Checkin: newlib-cygwin X-Git-Author: Lewis Revill X-Git-Refname: refs/heads/master X-Git-Oldrev: 44a79a6eca3d322020dda0919023d78dda129d4d X-Git-Newrev: 92e488d5b828b65a012adc0cbb06ac07055548d1 Message-Id: <20211027154453.B5CF73858438@sourceware.org> Date: Wed, 27 Oct 2021 15:44:53 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2021 15:44:53 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=92e488d5b828b65a012adc0cbb06ac07055548d1 commit 92e488d5b828b65a012adc0cbb06ac07055548d1 Author: Lewis Revill Date: Wed Oct 27 14:24:06 2021 +0100 libgloss/riscv: Fix hard coded reference to configure.in after rename The file configure.in was renamed to configure.ac in libgloss/riscv but the hard coded name in the Makefile for that directory was not updated. This patch simply renamed this to configure.ac. Diff: --- libgloss/riscv/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgloss/riscv/Makefile.in b/libgloss/riscv/Makefile.in index 185b6e6d2..d118a1876 100644 --- a/libgloss/riscv/Makefile.in +++ b/libgloss/riscv/Makefile.in @@ -306,7 +306,7 @@ install : install-hdrs install-libs install-specs #------------------------------------------------------------------------- configure_prereq = \ - $(src_dir)/configure.in \ + $(src_dir)/configure.ac \ $(src_dir)/configure : $(configure_prereq) cd $(src_dir) && autoconf