diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-08-29 00:22:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-08-29 00:22:10 +0000 |
commit | f3741c270182a282b7bc1088fc0c5e25ebc1d44f (patch) | |
tree | 8207b0eea203374c7492b5e4f837d48a6586a183 /newlib | |
parent | 48da61f5bb589d0ac20b6019217adcbc8c3b69b8 (diff) | |
download | newlib-f3741c270182a282b7bc1088fc0c5e25ebc1d44f.zip newlib-f3741c270182a282b7bc1088fc0c5e25ebc1d44f.tar.gz newlib-f3741c270182a282b7bc1088fc0c5e25ebc1d44f.tar.bz2 |
2002-08-28 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am (install-data-local): Move install of build
newlib.h after installing headers in libc/include so as to
overwrite default newlib.h.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 7 | ||||
-rw-r--r-- | newlib/Makefile.am | 2 | ||||
-rw-r--r-- | newlib/Makefile.in | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index fcc63f8..29870ab 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,12 @@ 2002-08-28 Jeff Johnston <jjohnstn@redhat.com> + * Makefile.am (install-data-local): Move install of build + newlib.h after installing headers in libc/include so as to + overwrite default newlib.h. + * Makefile.in: Regenerated. + +2002-08-28 Jeff Johnston <jjohnstn@redhat.com> + * libc/include/newlib.h: New file for tools that use newlib headers but don't build newlib first (e.g. gcc). diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 801a90e..7afb28a 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -228,10 +228,10 @@ endif $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do -if [ -z "$(MULTISUBDIR)" ]; then \ $(mkinstalldirs) $(DESTDIR)$(tooldir)/include; \ - $(INSTALL_DATA) newlib.h $(DESTDIR)$(tooldir)/include/newlib.h; \ for i in $(srcdir)/libc/include/*.h; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \ done; \ + $(INSTALL_DATA) newlib.h $(DESTDIR)$(tooldir)/include/newlib.h; \ $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/machine; \ for i in $(srcdir)/libc/include/machine/*.h; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \ diff --git a/newlib/Makefile.in b/newlib/Makefile.in index 2febe73..a58444b 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -798,10 +798,10 @@ install-data-local: install-toollibLIBRARIES $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do -if [ -z "$(MULTISUBDIR)" ]; then \ $(mkinstalldirs) $(DESTDIR)$(tooldir)/include; \ - $(INSTALL_DATA) newlib.h $(DESTDIR)$(tooldir)/include/newlib.h; \ for i in $(srcdir)/libc/include/*.h; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \ done; \ + $(INSTALL_DATA) newlib.h $(DESTDIR)$(tooldir)/include/newlib.h; \ $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/machine; \ for i in $(srcdir)/libc/include/machine/*.h; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \ |