diff options
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/Makefile.am | 4 | ||||
-rw-r--r-- | newlib/Makefile.in | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index babe7d7..5ae2a34 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2011-05-19 Matthew Gretton-Dann <matthew.gretton-dann@arm.com> + + * Makefile.am (install-data-local): Fix condition and rm call. + * Makefile.in: Regenerate. + 2011-05-16 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> * libc/include/time.h (CLOCK_PROCESS_CPUTIME_ID): Rename from diff --git a/newlib/Makefile.am b/newlib/Makefile.am index dca6260..41de26f 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -331,8 +331,8 @@ endif else true; fi ; \ done ; \ for i in $(NO_INCLUDE_LIST); do \ - if [ -f $(DESTDIR)$(tooldir)/include/$$i]; then \ - -rm $(DESTDIR)$(tooldir)/include/$$i; \ + if [ -f $(DESTDIR)$(tooldir)/include/$$i ]; then \ + rm $(DESTDIR)$(tooldir)/include/$$i; \ else true; fi ; \ done ; \ else true; fi diff --git a/newlib/Makefile.in b/newlib/Makefile.in index 3d5d312..9b013e6 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -1038,8 +1038,8 @@ install-data-local: install-toollibLIBRARIES else true; fi ; \ done ; \ for i in $(NO_INCLUDE_LIST); do \ - if [ -f $(DESTDIR)$(tooldir)/include/$$i]; then \ - -rm $(DESTDIR)$(tooldir)/include/$$i; \ + if [ -f $(DESTDIR)$(tooldir)/include/$$i ]; then \ + rm $(DESTDIR)$(tooldir)/include/$$i; \ else true; fi ; \ done ; \ else true; fi |