mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 02:50:25 +08:00
libgloss: bfin: abort on install errors
This commit is contained in:
parent
d42e1efcf9
commit
0f6ab41477
@ -1,3 +1,8 @@
|
||||
2011-03-26 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* bfin/Makefile.in (install-sim): Exit when install fails.
|
||||
(install-board): Likewise.
|
||||
|
||||
2011-03-24 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* xstormy16/crt0.s (_hwint): Fix .size directive.
|
||||
|
@ -146,12 +146,12 @@ install: ${SIM_INSTALL} ${BOARD_INSTALL}
|
||||
|
||||
install-sim:
|
||||
for x in ${SIM_CRT0} ${SIM_BSP} ${SIM_SCRIPTS}; do \
|
||||
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; \
|
||||
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
||||
done
|
||||
|
||||
install-board:
|
||||
for x in ${BOARD_CRT0S} ${BOARD_BSP}; do \
|
||||
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; \
|
||||
${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x || exit $$?; \
|
||||
done
|
||||
-if [ -z "${MULTISUBDIR}" ]; then \
|
||||
for x in ${BOARD_SCRIPTS}; do \
|
||||
|
Loading…
x
Reference in New Issue
Block a user