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 8D27F138334 for ; Sat, 21 Dec 2019 10:40:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E95AE08FE; Sat, 21 Dec 2019 10:40:51 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0668BE08FE for ; Sat, 21 Dec 2019 10:40:51 +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 1FFBE34D27F for ; Sat, 21 Dec 2019 10:40:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A73F990 for ; Sat, 21 Dec 2019 10:40:46 +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: <1576924822.7552df1dfeda6d1a0422f3cca37fe8cf953d8719.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7552df1dfeda6d1a0422f3cca37fe8cf953d8719 X-VCS-Branch: master Date: Sat, 21 Dec 2019 10:40:46 +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: c1e3dede-c7c0-4836-a7df-351839e0893b X-Archives-Hash: 46463bcc922f4dbf0350af9af372be4e commit: 7552df1dfeda6d1a0422f3cca37fe8cf953d8719 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 17 10:34:27 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 21 10:40:22 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7552df1d cmake.eclass: Drop pushd/popd from src_prepare Added in c3d7073e1cd222d07060a0edc07079d7aa6598e6 but probably irrelevant now. See also: https://bugs.gentoo.org/459678 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/cmake.eclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 587ba1d9b5..af8ca6faa5 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -318,8 +318,6 @@ _cmake_modify-cmakelists() { cmake_src_prepare() { debug-print-function ${FUNCNAME} "$@" - pushd "${S}" > /dev/null || die - default_src_prepare _cmake_check_build_dir @@ -346,8 +344,6 @@ cmake_src_prepare() { # Remove dangerous things. _cmake_modify-cmakelists - popd > /dev/null || die - # make ${S} read-only in order to detect broken build-systems if [[ ${CMAKE_QA_SRC_DIR_READONLY} && ! ${CMAKE_IN_SOURCE_BUILD} ]]; then chmod -R a-w "${S}"