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 A3ABF139694 for ; Sun, 9 Jul 2017 21:41:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A81CD214199; Sun, 9 Jul 2017 21:41:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8ABCE214189 for ; Sun, 9 Jul 2017 21:41:37 +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 D65F9341B9D for ; Sun, 9 Jul 2017 21:41:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0409974AE for ; Sun, 9 Jul 2017 21:41:34 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1499636485.7fd2897e877364e9a0e7640e27dbe6df9a6185e7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gflags/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/gflags/gflags-9999.ebuild X-VCS-Directories: dev-cpp/gflags/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7fd2897e877364e9a0e7640e27dbe6df9a6185e7 X-VCS-Branch: master Date: Sun, 9 Jul 2017 21:41:34 +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: 8cda4b23-8376-4ba3-9cc2-d0e89b3074f5 X-Archives-Hash: de2a29940892fb672492521b433b2d4b commit: 7fd2897e877364e9a0e7640e27dbe6df9a6185e7 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 29 08:50:33 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 9 21:41:25 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fd2897e dev-cpp/gflags: Fix installing stray package registry files dev-cpp/gflags/gflags-9999.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-cpp/gflags/gflags-9999.ebuild b/dev-cpp/gflags/gflags-9999.ebuild index e54d42e9acf..be3cd6bb9cf 100644 --- a/dev-cpp/gflags/gflags-9999.ebuild +++ b/dev-cpp/gflags/gflags-9999.ebuild @@ -27,6 +27,9 @@ multilib_src_configure() { local mycmakeargs=( -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=$(usex static-libs) + # avoid installing .cmake/packages, e.g.: + # >>> /tmp/portage/dev-cpp/gflags-9999/homedir/.cmake/packages/gflags/a7fca4708532331c2d656af0fdc8b8b9 + -DREGISTER_INSTALL_PREFIX=OFF ) cmake-utils_src_configure }