From: Tiziano Müller Date: Sat, 13 Apr 2019 13:56:35 +0000 (+0200) Subject: dev-util/source-highlight: serialize tests X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=364ab66d47a0098019eb131714254a8b38a3afc4;p=gentoo.git dev-util/source-highlight: serialize tests Upstream uses the same intermediate files in multiple tests, running them in parallel by make will eventually break one or more tests. Closes: https://bugs.gentoo.org/635100 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tiziano Müller --- diff --git a/dev-util/source-highlight/source-highlight-3.1.8.ebuild b/dev-util/source-highlight/source-highlight-3.1.8.ebuild index 4cc9a7726309..4f6024727e87 100644 --- a/dev-util/source-highlight/source-highlight-3.1.8.ebuild +++ b/dev-util/source-highlight/source-highlight-3.1.8.ebuild @@ -44,5 +44,7 @@ src_install () { src_test() { export LD_LIBRARY_PATH="${S}/lib/srchilite/.libs/" - default + # upstream uses the same temporary filenames in numerous places + # see https://bugs.gentoo.org/635100 + emake -j1 check }