Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/
Date: Sat, 01 Jun 2019 14:26:31
Message-Id: 1559399160.40e3eed16f422d97562d24703ef1e0111af5081a.asturm@gentoo
1 commit: 40e3eed16f422d97562d24703ef1e0111af5081a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 1 12:17:57 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 1 14:26:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e3eed1
7
8 media-gfx/inkscape: Check compiler if compiling only
9
10 Closes: https://bugs.gentoo.org/633406
11 Package-Manager: Portage-2.3.67, Repoman-2.3.13
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-gfx/inkscape/inkscape-0.92.4.ebuild | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/media-gfx/inkscape/inkscape-0.92.4.ebuild b/media-gfx/inkscape/inkscape-0.92.4.ebuild
18 index 078ed739c98..13ee14e96df 100644
19 --- a/media-gfx/inkscape/inkscape-0.92.4.ebuild
20 +++ b/media-gfx/inkscape/inkscape-0.92.4.ebuild
21 @@ -105,7 +105,7 @@ S="${WORKDIR}/${MY_P}"
22 RESTRICT="test"
23
24 pkg_pretend() {
25 - if use openmp; then
26 + if [[ ${MERGE_TYPE} != binary ]] && use openmp; then
27 tc-has-openmp || die "Please switch to an openmp compatible compiler"
28 fi
29 }