diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-27 11:26:06 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-27 11:26:06 +0000 |
commit | 8237872e2a633a4ccf4a6291dd67becf4ffc2ab9 (patch) | |
tree | ee80a7224f10677f4d592b09e2efde4da4b09194 /libgcc | |
parent | 4ac850f83ea1fc582346a032912f7c45089ff0d2 (diff) | |
download | gcc-8237872e2a633a4ccf4a6291dd67becf4ffc2ab9.tar.gz |
libgcc/
* Makefile.in (all): Use install-leaf rather than install.
(install): Split most of the rule into...
(install-leaf): ...this new one.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131198 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 6 | ||||
-rw-r--r-- | libgcc/Makefile.in | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index d5481be95a7..68f4c508933 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,9 @@ +2007-12-27 Richard Sandiford <rsandifo@nildram.co.uk> + + * Makefile.in (all): Use install-leaf rather than install. + (install): Split most of the rule into... + (install-leaf): ...this new one. + 2007-12-19 Etsushi Kato <ek.kato@gmail.com> Paolo Bonzini <bonzini@gnu.org> diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in index 24894e6efe4..3acf2e856a4 100644 --- a/libgcc/Makefile.in +++ b/libgcc/Makefile.in @@ -100,7 +100,7 @@ all: all-multi # them back to the GCC directory. Too many things (other # in-tree libraries, and DejaGNU) know about the layout # of the build tree, for now. - $(MAKE) install DESTDIR=$(gcc_objdir) \ + $(MAKE) install-leaf DESTDIR=$(gcc_objdir) \ slibdir= libsubdir= MULTIOSDIR=$(MULTIDIR) .PHONY: all-multi @@ -884,7 +884,7 @@ install-shared: @shlib_base_name@,libgcc_s,$(subst \ @shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(SHLIB_INSTALL)))) -install: $(install-shared) $(install-libunwind) +install-leaf: $(install-shared) $(install-libunwind) $(mkinstalldirs) $(DESTDIR)$(inst_libdir) $(INSTALL_DATA) libgcc.a $(DESTDIR)$(inst_libdir)/ @@ -900,6 +900,7 @@ install: $(install-shared) $(install-libunwind) $(INSTALL_DATA) $$file $(DESTDIR)$(inst_libdir)/; \ done +install: install-leaf @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install .PHONY: install install-shared install-libunwind |