diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-02 06:09:56 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-02 06:09:56 +0000 |
commit | a426f02532d2618014306177912269473bf71e34 (patch) | |
tree | e1b9f8079ab39f7e5afebb8c1a619ae2bb8cf685 /libiberty | |
parent | 1a6594e54f038c78ff9b148a9affc116bdf761e2 (diff) | |
download | gcc-a426f02532d2618014306177912269473bf71e34.tar.gz |
Small multilib rule fixups.
libgcc/:
PR other/42980
* Makefile.in (install): Use $(MAKE) string in rule, for
parallel make.
libiberty/:
* Makefile.in (all): Do not use exec.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index ee01cafe136..cf80e38b3c2 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2010-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * Makefile.in (all): Do not use exec. + 2010-02-04 Tom Tromey <tromey@redhat.com> * testsuite/demangle-expected: Add missing --format=gnu-v3. diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index ba24c6db7a7..f22d3a341f4 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -101,7 +101,7 @@ SUBDIRS = testsuite # FIXME: add @BUILD_INFO@ once we're sure it works for everyone. all: stamp-picdir $(TARGETLIB) required-list all-subdir - @: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all + @: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all .PHONY: check installcheck check: check-subdir |