4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

libgloss: bfin: fix missing dir with parallel install

Depending on the processing order of rules when installing in parallel,
install-board might run first and the target dirs don't yet exist.
This commit is contained in:
Mike Frysinger 2022-01-28 05:56:36 -05:00
parent 047eaf9a6b
commit c6c414fcb3

View 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