aboutsummaryrefslogtreecommitdiff
path: root/libgloss
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-11-17 19:18:02 +0000
committerJeff Johnston <jjohnstn@redhat.com>2006-11-17 19:18:02 +0000
commit634f2d7fa7666c515f8ee33f104bc330c0e90a98 (patch)
treea1b6231c5619abae94ffdc2f6faaa4b9a94d8807 /libgloss
parent0b66ef4c9df64a5cd5b27f90170edd45f488c288 (diff)
downloadnewlib-634f2d7fa7666c515f8ee33f104bc330c0e90a98.zip
newlib-634f2d7fa7666c515f8ee33f104bc330c0e90a98.tar.gz
newlib-634f2d7fa7666c515f8ee33f104bc330c0e90a98.tar.bz2
2006-11-17 Jeff Johnston <jjohnstn@redhat.com>
* mn10300/Makefile.in: Add spaces after do in "for" loop.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog4
-rw-r--r--libgloss/mn10300/Makefile.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index 1b7f407..e3b16bb 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Jeff Johnston <jjohnstn@redhat.com>
+
+ * mn10300/Makefile.in: Add spaces after do in "for" loop.
+
2006-11-08 Jie Zhang <jie.zhang@analog.com>
* bfin/configure.in: New.
diff --git a/libgloss/mn10300/Makefile.in b/libgloss/mn10300/Makefile.in
index 4153fd4..211a99f 100644
--- a/libgloss/mn10300/Makefile.in
+++ b/libgloss/mn10300/Makefile.in
@@ -128,13 +128,13 @@ distclean maintainer-clean realclean: clean
.PHONY: install info install-info clean-info
install:
- @for crt in ${CRT0}; do\
+ @for crt in ${CRT0}; do \
$(INSTALL_PROGRAM) $${crt} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${crt}; \
done
- @for bsp in ${BSP}; do\
+ @for bsp in ${BSP}; do \
$(INSTALL_PROGRAM) $${bsp} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
done
- @for script in ${SCRIPTS}; do\
+ @for script in ${SCRIPTS}; do \
$(INSTALL_DATA) ${srcdir}/$${script}.ld $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \
done