From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DEBE138334 for ; Sat, 7 Jul 2018 13:58:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04B43E0C7D; Sat, 7 Jul 2018 13:58:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C83CDE0C7D for ; Sat, 7 Jul 2018 13:58:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F565335C39 for ; Sat, 7 Jul 2018 13:58:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4370A352 for ; Sat, 7 Jul 2018 13:58:00 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1530971863.ade32fdab147393e09cc239e7cd5adc59a087c12.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/ms-gsl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild X-VCS-Directories: dev-cpp/ms-gsl/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ade32fdab147393e09cc239e7cd5adc59a087c12 X-VCS-Branch: master Date: Sat, 7 Jul 2018 13:58:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c013e365-a0a9-49db-8002-d7855a2e62ba X-Archives-Hash: 62888e9c7746becc3722efb58f693253 commit: ade32fdab147393e09cc239e7cd5adc59a087c12 Author: Jan Henke taujhe de> AuthorDate: Sat Jul 7 13:41:15 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 7 13:57:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade32fda dev-cpp/ms-gsl: Fix bug 659386 Closes: https://bugs.gentoo.org/659386 Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9082 dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild b/dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild index c1443565414..cde182b5ba1 100644 --- a/dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild +++ b/dev-cpp/ms-gsl/ms-gsl-1.0.0.ebuild @@ -26,7 +26,7 @@ PATCHES=( src_configure() { local mycmakeargs=( -DGSL_TEST=$(usex test) - -DFORCE_SYSTEM_CATCH=ON ) + use test && mycmakeargs+=( -DFORCE_SYSTEM_CATCH=ON ) cmake-utils_src_configure }