diff options
author | Benda Xu <heroxbd@gentoo.org> | 2016-05-19 13:54:23 +0900 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2016-05-19 13:54:45 +0900 |
commit | 63082aaab0088aae7e3286c449c6da9140686fb2 (patch) | |
tree | 0d89a2c17cf1644cfa930a1884d54790cafef0cb /sci-physics | |
parent | app-emulation/lxc: version bump to 2.0.1 (diff) | |
download | gentoo-63082aaab0088aae7e3286c449c6da9140686fb2.tar.gz gentoo-63082aaab0088aae7e3286c449c6da9140686fb2.tar.bz2 gentoo-63082aaab0088aae7e3286c449c6da9140686fb2.zip |
sci-physics/root: workaround for parallel make jobs.
Bug: 571638
Package-Manager: portage-2.2.28
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/root/root-5.34.32.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sci-physics/root/root-5.34.32.ebuild b/sci-physics/root/root-5.34.32.ebuild index 5464aec231ee..659aee7058ce 100644 --- a/sci-physics/root/root-5.34.32.ebuild +++ b/sci-physics/root/root-5.34.32.ebuild @@ -340,6 +340,10 @@ src_configure() { } src_compile() { + # The build system does not handle the dependency of bin/rmkdepend correctly, + # preventing it to be called in parallel. Build bin/rmkdepend explicitly + # first to circumvent the problem. + emake bin/rmkdepend emake \ OPT="${CXXFLAGS}" \ F77OPT="${FFLAGS}" \ |