diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-10-04 20:47:09 -0400 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-10-04 20:47:24 -0400 |
commit | 453d7043e683558978470e20d45a36a21f975ac4 (patch) | |
tree | 84fe2701e86691777937d0ca541f35caa5334faf /games-strategy | |
parent | add patch from Sander Sweers to support building against newer miniupnpc (bug... (diff) | |
download | gentoo-453d7043e683558978470e20d45a36a21f975ac4.tar.gz gentoo-453d7043e683558978470e20d45a36a21f975ac4.tar.bz2 gentoo-453d7043e683558978470e20d45a36a21f975ac4.zip |
work around parallel make issues - bug #561380
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/megaglest/megaglest-3.11.1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games-strategy/megaglest/megaglest-3.11.1.ebuild b/games-strategy/megaglest/megaglest-3.11.1.ebuild index 3c74a8d381b9..a0502649730f 100644 --- a/games-strategy/megaglest/megaglest-3.11.1.ebuild +++ b/games-strategy/megaglest/megaglest-3.11.1.ebuild @@ -116,7 +116,9 @@ src_configure() { src_compile() { if use editor || use model-viewer; then - VIRTUALX_COMMAND="cmake-utils_src_compile" virtualmake + # work around parallel make issues - bug #561380 + MAKEOPTS="-j1 ${MAKEOPTS}" \ + VIRTUALX_COMMAND="cmake-utils_src_compile" virtualmake else cmake-utils_src_compile fi |