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 4C10B138359 for ; Fri, 25 Sep 2020 19:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A527E07DB; Fri, 25 Sep 2020 19:53:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1BEC7E07DB for ; Fri, 25 Sep 2020 19:53:18 +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 EC5943408B8 for ; Fri, 25 Sep 2020 19:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 945AE353 for ; Fri, 25 Sep 2020 19:53:15 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1601063554.3af9eaa3be51d244ec6971321c3cf6e55682a58f.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/abseil-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild X-VCS-Directories: dev-cpp/abseil-cpp/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 3af9eaa3be51d244ec6971321c3cf6e55682a58f X-VCS-Branch: master Date: Fri, 25 Sep 2020 19:53:15 +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: 82ff038a-0892-484e-aa58-74b343642311 X-Archives-Hash: 2ef610e6367b75dac2698f3632386644 commit: 3af9eaa3be51d244ec6971321c3cf6e55682a58f Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Sep 25 19:52:19 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Sep 25 19:52:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af9eaa3 dev-cpp/abseil-cpp: avoid cmake unused var warning Closes: https://bugs.gentoo.org/744682 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Georgy Yakovlev gentoo.org> dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild index 0daa9c46bf7..51528f25fff 100644 --- a/dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild +++ b/dev-cpp/abseil-cpp/abseil-cpp-20200923.ebuild @@ -57,7 +57,7 @@ src_configure() { -DABSL_ENABLE_INSTALL=TRUE -DABSL_LOCAL_GOOGLETEST_DIR="${WORKDIR}/googletest-${GTEST_COMMIT}" -DABSL_RUN_TESTS=$(usex test) - -DBUILD_TESTING=$(usex test) + $(usex test -DBUILD_TESTING=ON '') #intentional usex ) cmake_src_configure }