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 60E931382C5 for ; Sat, 6 Jun 2020 00:12:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80EB0E0870; Sat, 6 Jun 2020 00:12:00 +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 63DB6E0870 for ; Sat, 6 Jun 2020 00:12:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1ED2B34EF52 for ; Sat, 6 Jun 2020 00:11:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C2E2285 for ; Sat, 6 Jun 2020 00:11:56 +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: <1591402034.cdef9f4db72e0efb3854b59ee2eeaa48bee70f34.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdynd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libdynd/libdynd-0.7.2.ebuild X-VCS-Directories: dev-libs/libdynd/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cdef9f4db72e0efb3854b59ee2eeaa48bee70f34 X-VCS-Branch: master Date: Sat, 6 Jun 2020 00:11:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4fdee681-fc06-4a6b-a477-a7fcf0417dde X-Archives-Hash: a58325a136430e1a4302a6d689aa88d1 commit: cdef9f4db72e0efb3854b59ee2eeaa48bee70f34 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 6 00:07:14 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 6 00:07:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdef9f4d dev-libs/libdynd: -DFFTW_PATH is not used without IUSE="fftw" Bug: https://bugs.gentoo.org/659402 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libdynd/libdynd-0.7.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libdynd/libdynd-0.7.2.ebuild b/dev-libs/libdynd/libdynd-0.7.2.ebuild index c969b21adce..72f0e12ff77 100644 --- a/dev-libs/libdynd/libdynd-0.7.2.ebuild +++ b/dev-libs/libdynd/libdynd-0.7.2.ebuild @@ -62,8 +62,8 @@ src_configure() { -DDYND_BUILD_TESTS="$(usex test)" -DDYND_CUDA="$(usex cuda)" -DDYND_FFTW="$(usex fftw)" - -DFFTW_PATH="${EPREFIX}/usr/include" ) + use fftw && mycmakeargs+=( -DFFTW_PATH="${EPREFIX}/usr/include" ) cmake-utils_src_configure }