From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 5BE823858039; Fri, 28 Jan 2022 00:40:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5BE823858039 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] libgloss: Fix PRU & Blackfin mkinstalldirs path X-Act-Checkin: newlib-cygwin X-Git-Author: Dimitar Dimitrov X-Git-Refname: refs/heads/master X-Git-Oldrev: dcbff9eea71d06454e7d55d6b7e72672c0987d6d X-Git-Newrev: b095628ecff1831b250f34d3b6b5787b3f247d63 Message-Id: <20220128004024.5BE823858039@sourceware.org> Date: Fri, 28 Jan 2022 00:40:24 +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: Fri, 28 Jan 2022 00:40:24 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Db095628ecff= 1831b250f34d3b6b5787b3f247d63 commit b095628ecff1831b250f34d3b6b5787b3f247d63 Author: Dimitar Dimitrov Date: Thu Jan 27 20:52:43 2022 +0200 libgloss: Fix PRU & Blackfin mkinstalldirs path =20 With the move of configure scripts out of target directories, relative paths to top_srcdir got broken: =20 /bin/sh: .../newlib/libgloss/../../mkinstalldirs: No such file or dir= ectory =20 Fix the PRU build by switching to srcroot relative path, as rest of tar= gets do. =20 Fix the Blackfin build in the same way. =20 Signed-off-by: Dimitar Dimitrov Diff: --- libgloss/bfin/Makefile.in | 3 +-- libgloss/pru/Makefile.in | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libgloss/bfin/Makefile.in b/libgloss/bfin/Makefile.in index a8ecfaf14..305ce310d 100644 --- a/libgloss/bfin/Makefile.in +++ b/libgloss/bfin/Makefile.in @@ -7,7 +7,6 @@ srcdir =3D @srcdir@ objdir =3D . srcroot =3D $(srcdir)/../.. objroot =3D $(objdir)/../.. -top_srcdir =3D @top_srcdir@ =20 prefix =3D @prefix@ exec_prefix =3D @exec_prefix@ @@ -30,7 +29,7 @@ MULTISUBDIR =3D =20 SHELL =3D /bin/sh =20 -mkinstalldirs =3D $(SHELL) $(top_srcdir)/../../mkinstalldirs +mkinstalldirs =3D $(SHELL) $(srcroot)/mkinstalldirs =20 CC =3D @CC@ =20 diff --git a/libgloss/pru/Makefile.in b/libgloss/pru/Makefile.in index 3bf9f4529..7a2f290a8 100644 --- a/libgloss/pru/Makefile.in +++ b/libgloss/pru/Makefile.in @@ -29,7 +29,6 @@ srcdir =3D @srcdir@ objdir =3D . srcroot =3D $(srcdir)/../.. objroot =3D $(objdir)/../.. -top_srcdir =3D @top_srcdir@ =20 prefix =3D @prefix@ exec_prefix =3D @exec_prefix@ @@ -49,7 +48,7 @@ MULTISUBDIR =3D =20 SHELL =3D /bin/sh =20 -mkinstalldirs =3D $(SHELL) $(top_srcdir)/../../mkinstalldirs +mkinstalldirs =3D $(SHELL) $(srcroot)/mkinstalldirs =20 CC =3D @CC@