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:
parent
047eaf9a6b
commit
c6c414fcb3
|
@ -180,6 +180,7 @@ install-sim:
|
||||||
done
|
done
|
||||||
|
|
||||||
install-board:
|
install-board:
|
||||||
|
${mkinstalldirs} ${DESTDIR}${tooldir}/lib${MULTISUBDIR}
|
||||||
for x in ${BOARD_CRT0S} ${BOARD_BSP}; do \
|
for x in ${BOARD_CRT0S} ${BOARD_BSP}; do \
|
||||||
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue