From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AE63B13829C for ; Thu, 9 Jun 2016 15:13:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3574254031; Thu, 9 Jun 2016 15:13:06 +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 49E8C254031 for ; Thu, 9 Jun 2016 15:13:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 10567340C53 for ; Thu, 9 Jun 2016 15:13:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27DC913FE for ; Thu, 9 Jun 2016 15:13:03 +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: <1465485147.4038b1ffdcf3c360aed4f154b5d691d64d52db46.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: 4038b1ffdcf3c360aed4f154b5d691d64d52db46 X-VCS-Branch: master Date: Thu, 9 Jun 2016 15:13:03 +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: 07bd3d6d-1375-425c-bd00-9ea6a3435977 X-Archives-Hash: cba610dc84b52bea38601b180966337e commit: 4038b1ffdcf3c360aed4f154b5d691d64d52db46 Author: Michael Palimaka gentoo org> AuthorDate: Thu Jun 9 15:11:23 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Jun 9 15:12:27 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4038b1ff cmake-utils.eclass: do not pass CMAKE_INSTALL_DO_STRIP in EAPI 6 and later CMAKE_INSTALL_DO_STRIP does not appear to be widely used, so this is a good opportunity to get rid of it. eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 02b06bb..bfd3581 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -628,7 +628,7 @@ enable_cmake-utils_src_configure() { -DCMAKE_INSTALL_PREFIX="${EPREFIX}${PREFIX}" "${mycmakeargs_local[@]}" -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" - -DCMAKE_INSTALL_DO_STRIP=OFF + $([[ ${EAPI} == [2345] ]] && echo -DCMAKE_INSTALL_DO_STRIP=OFF) -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" -DCMAKE_TOOLCHAIN_FILE="${toolchain_file}" "${MYCMAKEARGS}"