Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-01-28 13:56:36 +0300
committerMike Frysinger <vapier@gentoo.org>2022-01-28 13:57:37 +0300
commitc6c414fcb36082d4c2b7180406e85e3e6c1780ac (patch)
tree9142d69880c4422b12facb2688221fd5e702e850 /libgloss/bfin
parent047eaf9a6b36881a15e43cbea333725b8e59a3b4 (diff)
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.
Diffstat (limited to 'libgloss/bfin')
-rw-r--r--libgloss/bfin/Makefile.in1
1 files changed, 1 insertions, 0 deletions
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
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