diff options
author | Tim Harder <radhermit@gentoo.org> | 2019-08-14 22:49:21 -0600 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2019-08-14 22:50:18 -0600 |
commit | 25800c921a039e2a825879c6a0cd992e777f6045 (patch) | |
tree | 8a59980d1fc738c4ee3a5f1694b3904cff70fe4f /dev-util/cpputest | |
parent | x11-wm/subtle: update supported ruby versions and bump to EAPI 7 (diff) | |
download | gentoo-25800c921a039e2a825879c6a0cd992e777f6045.tar.gz gentoo-25800c921a039e2a825879c6a0cd992e777f6045.tar.bz2 gentoo-25800c921a039e2a825879c6a0cd992e777f6045.zip |
dev-util/cpputest: add missing conditional test RESTRICT
Signed-off-by: Tim Harder <radhermit@gentoo.org>
Diffstat (limited to 'dev-util/cpputest')
-rw-r--r-- | dev-util/cpputest/cpputest-3.8.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dev-util/cpputest/cpputest-3.8.ebuild b/dev-util/cpputest/cpputest-3.8.ebuild index 4c3046bb40e4..f76d8b2c9190 100644 --- a/dev-util/cpputest/cpputest-3.8.ebuild +++ b/dev-util/cpputest/cpputest-3.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,9 +11,8 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm x86" IUSE="test" +RESTRICT="!test? ( test )" -DEPEND=" - test? ( >=dev-cpp/gtest-1.8.0 ) -" +DEPEND="test? ( >=dev-cpp/gtest-1.8.0 )" DOCS=( AUTHORS README.md README_CppUTest_for_C.txt ) |