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 5F88C138330 for ; Thu, 8 Sep 2016 20:15:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E7C1E07DD; Thu, 8 Sep 2016 20:15:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 29DEBE07DD for ; Thu, 8 Sep 2016 20:15:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5EC73408B8 for ; Thu, 8 Sep 2016 20:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3153B2473 for ; Thu, 8 Sep 2016 20:15:43 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1473365723.0ceb2634274a4c51279a2a64e19be20f85a74ba4.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 0ceb2634274a4c51279a2a64e19be20f85a74ba4 X-VCS-Branch: master Date: Thu, 8 Sep 2016 20:15:43 +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: bbb70e97-9204-4376-a5d4-ddfbb6ed207e X-Archives-Hash: fb5e1379ffed89c783dab2dfd1dbf33c commit: 0ceb2634274a4c51279a2a64e19be20f85a74ba4 Author: Michael Palimaka gentoo org> AuthorDate: Thu Sep 8 20:14:36 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Sep 8 20:15:23 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0ceb2634 Revert "cmake-utils.eclass: print feature summary" A package can include a custom FeatureSummary module which does not export FEATURE_SUMMARY() resulting in a configure failure. This reverts commit 549ade03b47bb0b22801001921cdc31111c5ea31. Gentoo-bug: 593230 eclass/cmake-utils.eclass | 7 ------- 1 file changed, 7 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index d5292bc..393ee28 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -425,13 +425,6 @@ _cmake_modify-cmakelists() { Module \${CMAKE_MODULE_LINKER_FLAGS} Shared \${CMAKE_SHARED_LINKER_FLAGS}\n") _EOF_ - - if ! grep -Fiq FEATURE_SUMMARY "${CMAKE_USE_DIR}"/CMakeLists.txt; then - cat >> "${CMAKE_USE_DIR}"/CMakeLists.txt <<- _EOF_ || die - include(FeatureSummary) - FEATURE_SUMMARY(INCLUDE_QUIET_PACKAGES WHAT ALL) - _EOF_ - fi } # temporary function for moving cmake cleanups from from src_configure -> src_prepare.