From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 6E9763858D3C; Mon, 24 Jan 2022 03:06:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6E9763858D3C 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: bfin: fix subdir install for sim files X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: dcb25665be227fb5a05497b7178a3d5df88050ec X-Git-Newrev: dfa088ab660c80678825ba89f88f9338cfaed3f7 Message-Id: <20220124030643.6E9763858D3C@sourceware.org> Date: Mon, 24 Jan 2022 03:06:43 +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: Mon, 24 Jan 2022 03:06:43 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Ddfa088ab660= c80678825ba89f88f9338cfaed3f7 commit dfa088ab660c80678825ba89f88f9338cfaed3f7 Author: Mike Frysinger Date: Sun Jan 23 21:08:07 2022 -0500 libgloss: bfin: fix subdir install for sim files =20 When building in parallel, make sure the subdir for the sim files exist before trying to install into them. Diff: --- libgloss/bfin/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/libgloss/bfin/Makefile.in b/libgloss/bfin/Makefile.in index b206a17ae..07ce0d0f8 100644 --- a/libgloss/bfin/Makefile.in +++ b/libgloss/bfin/Makefile.in @@ -175,6 +175,7 @@ distclean maintainer-clean realclean: clean install: ${SIM_INSTALL} ${BOARD_INSTALL} =20 install-sim: + ${mkinstalldirs} ${DESTDIR}${tooldir}/lib${MULTISUBDIR} for x in ${SIM_CRT0} ${SIM_BSP} ${SIM_SCRIPTS}; do \ ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $= $?; \ done