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 F31A51381F3 for ; Thu, 17 Oct 2013 19:16:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5EC3E0ACF; Thu, 17 Oct 2013 19:16:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D806E0ACF for ; Thu, 17 Oct 2013 19:16:45 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3454B33EFD2 for ; Thu, 17 Oct 2013 19:16:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CF41CE5308 for ; Thu, 17 Oct 2013 19:16:42 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1382037373.cee0fda61028298418a2cbdcbc013b1b9e5cc23f.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-util/cmake/ X-VCS-Repository: proj/kde X-VCS-Files: dev-util/cmake/cmake-2.8.12.ebuild X-VCS-Directories: dev-util/cmake/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: cee0fda61028298418a2cbdcbc013b1b9e5cc23f X-VCS-Branch: master Date: Thu, 17 Oct 2013 19:16:42 +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: 3952a2e1-0508-4ce1-a3eb-6f0bd9eb76b3 X-Archives-Hash: da113992eff0bf2459f6553be3525112 commit: cee0fda61028298418a2cbdcbc013b1b9e5cc23f Author: Johannes Huber gentoo org> AuthorDate: Thu Oct 17 19:16:13 2013 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Oct 17 19:16:13 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cee0fda6 [dev-util/cmake] Use non deprecated BUILD_DIR var. Package-Manager: portage-2.2.7 --- dev-util/cmake/cmake-2.8.12.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/cmake/cmake-2.8.12.ebuild b/dev-util/cmake/cmake-2.8.12.ebuild index 24231c9..bfd1f2c 100644 --- a/dev-util/cmake/cmake-2.8.12.ebuild +++ b/dev-util/cmake/cmake-2.8.12.ebuild @@ -98,7 +98,7 @@ cmake_src_test() { "${S}"/Tests/{OutDir,CMakeOnly/SelectLibraryConfigurations}/CMakeLists.txt \ || die - pushd "${CMAKE_BUILD_DIR}" > /dev/null + pushd "${BUILD_DIR}" > /dev/null local ctestargs [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" @@ -108,7 +108,7 @@ cmake_src_test() { # CTest.updatecvs, which fails to commit as root # Qt4Deploy, which tries to break sandbox and ignores prefix # TestUpload, which requires network access - "${CMAKE_BUILD_DIR}"/bin/ctest ${ctestargs} \ + "${BUILD_DIR}"/bin/ctest ${ctestargs} \ -E "(BootstrapTest|CTest.UpdateCVS|Qt4Deploy|TestUpload)" \ || die "Tests failed"