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/Makefile.am | |
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/Makefile.am')
-rw-r--r-- | newlib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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`; \ |