]> sourceware.org Git - newlib-cygwin.git/commitdiff
libgloss: bfin: fix missing dir with parallel install
authorMike Frysinger <vapier@gentoo.org>
Fri, 28 Jan 2022 10:56:36 +0000 (05:56 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 28 Jan 2022 10:57:37 +0000 (05:57 -0500)
Depending on the processing order of rules when installing in parallel,
install-board might run first and the target dirs don't yet exist.

libgloss/bfin/Makefile.in

index 305ce310dd19efb269d7db9e843f4a1670476aac..f3d4cb62442c967eb68ab6f7401c7b459f9b4b89 100644 (file)
@@ -180,6 +180,7 @@ install-sim:
        done
 
 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
This page took 0.030739 seconds and 5 git commands to generate.