diff options
author | Peter Alfredsen <crabbedhaloablution@icloud.com> | 2020-12-16 14:59:02 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-12-17 17:33:29 +0000 |
commit | e52880cfbdfdb383f31844687e78a16df94252e9 (patch) | |
tree | 36016235db1baf742b863741e33db8ec9a63784e /net-news/rssguard | |
parent | dev-embedded/rpi-eeprom: bump to 11.0_p1 (diff) | |
download | gentoo-e52880cfbdfdb383f31844687e78a16df94252e9.tar.gz gentoo-e52880cfbdfdb383f31844687e78a16df94252e9.tar.bz2 gentoo-e52880cfbdfdb383f31844687e78a16df94252e9.zip |
net-news/rssguard: fix parallel make issue in src_install
Closes: https://bugs.gentoo.org/760120
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Peter Alfredsen <crabbedhaloablution@icloud.com>
Closes: https://github.com/gentoo/gentoo/pull/18679
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-news/rssguard')
-rw-r--r-- | net-news/rssguard/rssguard-3.8.3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-news/rssguard/rssguard-3.8.3.ebuild b/net-news/rssguard/rssguard-3.8.3.ebuild index e6813d670969..15b6a7dac1db 100644 --- a/net-news/rssguard/rssguard-3.8.3.ebuild +++ b/net-news/rssguard/rssguard-3.8.3.ebuild @@ -55,5 +55,5 @@ src_configure() { } src_install() { - emake install INSTALL_ROOT="${D}" + emake -j1 install INSTALL_ROOT="${D}" } |