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 17185138202 for ; Thu, 17 Oct 2013 19:26:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFF06E0AD0; Thu, 17 Oct 2013 19:26:14 +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 10E19E0AED for ; Thu, 17 Oct 2013 19:26:13 +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 BCD2333EF9F for ; Thu, 17 Oct 2013 19:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6F176E5308 for ; Thu, 17 Oct 2013 19:26:11 +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: <1382037547.8189b7f94507ddc4c09452bd784366fd690fa973.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/libdbusmenu-qt/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild X-VCS-Directories: dev-libs/libdbusmenu-qt/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 8189b7f94507ddc4c09452bd784366fd690fa973 X-VCS-Branch: master Date: Thu, 17 Oct 2013 19:26:11 +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: f5b862af-ecd9-46e0-957f-526868360708 X-Archives-Hash: 874539feb4b095a5b9c307079e2406e1 commit: 8189b7f94507ddc4c09452bd784366fd690fa973 Author: Johannes Huber gentoo org> AuthorDate: Thu Oct 17 19:19:07 2013 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Oct 17 19:19:07 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8189b7f9 [dev-libs/libdbusmenu-qt] Use non deprecated BUILD_DIR var. Package-Manager: portage-2.2.7 --- dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild index 6b3310f..f8ef4f6 100644 --- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild +++ b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-9999.ebuild @@ -53,10 +53,10 @@ src_configure() { } src_test() { - local builddir=${CMAKE_BUILD_DIR} + local builddir=${BUILD_DIR} - CMAKE_BUILD_DIR=${CMAKE_BUILD_DIR}/tests \ + BUILD_DIR=${BUILD_DIR}/tests \ VIRTUALX_COMMAND=cmake-utils_src_test virtualmake - CMAKE_BUILD_DIR=${builddir} + BUILD_DIR=${builddir} }