From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 4AF903947C36; Fri, 28 Jan 2022 10:58:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4AF903947C36 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 missing dir with parallel install X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: 047eaf9a6b36881a15e43cbea333725b8e59a3b4 X-Git-Newrev: c6c414fcb36082d4c2b7180406e85e3e6c1780ac Message-Id: <20220128105808.4AF903947C36@sourceware.org> Date: Fri, 28 Jan 2022 10:58:08 +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 10:58:08 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Dc6c414fcb36= 082d4c2b7180406e85e3e6c1780ac commit c6c414fcb36082d4c2b7180406e85e3e6c1780ac Author: Mike Frysinger Date: Fri Jan 28 05:56:36 2022 -0500 libgloss: bfin: fix missing dir with parallel install =20 Depending on the processing order of rules when installing in parallel, install-board might run first and the target dirs don't yet exist. Diff: --- libgloss/bfin/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/libgloss/bfin/Makefile.in b/libgloss/bfin/Makefile.in index 305ce310d..f3d4cb624 100644 --- a/libgloss/bfin/Makefile.in +++ b/libgloss/bfin/Makefile.in @@ -180,6 +180,7 @@ install-sim: done =20 install-board: + ${mkinstalldirs} ${DESTDIR}${tooldir}/lib${MULTISUBDIR} for x in ${BOARD_CRT0S} ${BOARD_BSP}; do \ ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $= $?; \ done