diff options
author | Mark Wielaard <mjw@redhat.com> | 2010-02-16 13:20:15 +0100 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2010-02-16 13:24:43 +0100 |
commit | e6364d7923d49c7bfe1a807cd877cb9b29ca0acf (patch) | |
tree | b04ad8934081844453e192e8955b31961f22b7f8 /Makefile.am | |
parent | acc2bbc4949d1c147d613edcc23459ae4e19147a (diff) | |
download | systemtap-steved-e6364d7923d49c7bfe1a807cd877cb9b29ca0acf.tar.gz systemtap-steved-e6364d7923d49c7bfe1a807cd877cb9b29ca0acf.tar.xz systemtap-steved-e6364d7923d49c7bfe1a807cd877cb9b29ca0acf.zip |
Don't try to parallel install partial build-elfutils build in lib-elfutils.
The parallel install into lib-elfutils during the build seems to be fragile,
so explicitly install the libs with -j1.
* Makefile.am (stamp-elfutils): Add -j1 in for dir loop sub make.
* Makefile.in: Regenerated.
* aclocal.m4: Likewise.
* compile: Likewise.
* config.in: Likewise.
* configure: Likewise.
* doc/Makefile.in: Likewise.
* doc/SystemTap_Tapset_Reference/Makefile.in: Likewise.
* doc/beginners/Makefile.in: Likewise.
* grapher/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.
* testsuite/aclocal.m4: Likewise.
* testsuite/configure: Likewise.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f09ab90c..3ff38def 100644 --- a/Makefile.am +++ b/Makefile.am @@ -138,7 +138,7 @@ CLEANFILES += stamp-elfutils stamp-elfutils: config.status $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils all bin_PROGRAMS= for dir in libelf libebl libdw libdwfl backends; do \ - $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils/$$dir bin_PROGRAMS= install; \ + $(MAKE) $(AM_MAKEFLAGS) -j1 -C build-elfutils/$$dir bin_PROGRAMS= install; \ done touch $@ stap_DEPENDENCIES += lib-elfutils/libdw.so |