diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-06 21:52:38 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-06 22:31:42 +0100 |
commit | fc2d99a95b22a0beaa3906084d4816bf041052a6 (patch) | |
tree | 3a600e164ba6c14390fbfc148525ef4bd846fa4e /dev-libs/libical | |
parent | media-gfx/openscad: don't call ccache (diff) | |
download | gentoo-fc2d99a95b22a0beaa3906084d4816bf041052a6.tar.gz gentoo-fc2d99a95b22a0beaa3906084d4816bf041052a6.tar.bz2 gentoo-fc2d99a95b22a0beaa3906084d4816bf041052a6.zip |
dev-libs/libical: Don't execute tests in parallel
Closes: https://bugs.gentoo.org/642958
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-libs/libical')
-rw-r--r-- | dev-libs/libical/libical-2.0.0-r2.ebuild | 7 | ||||
-rw-r--r-- | dev-libs/libical/libical-2.0.0-r3.ebuild | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/dev-libs/libical/libical-2.0.0-r2.ebuild b/dev-libs/libical/libical-2.0.0-r2.ebuild index 32dc6201e26a..591441b014b0 100644 --- a/dev-libs/libical/libical-2.0.0-r2.ebuild +++ b/dev-libs/libical/libical-2.0.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -38,6 +38,11 @@ src_configure() { cmake-utils_src_configure } +src_test() { + local myctestargs=( -j1 ) + cmake-utils_src_test +} + src_install() { cmake-utils_src_install diff --git a/dev-libs/libical/libical-2.0.0-r3.ebuild b/dev-libs/libical/libical-2.0.0-r3.ebuild index d3d88590688d..3b8c09f8c43e 100644 --- a/dev-libs/libical/libical-2.0.0-r3.ebuild +++ b/dev-libs/libical/libical-2.0.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -44,6 +44,11 @@ src_configure() { cmake-utils_src_configure } +src_test() { + local myctestargs=( -j1 ) + cmake-utils_src_test +} + src_install() { cmake-utils_src_install |