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 1B69D1381F3 for ; Fri, 26 Jul 2013 16:14:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18841E0A65; Fri, 26 Jul 2013 16:14:05 +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 4D0D4E0A65 for ; Fri, 26 Jul 2013 16:14:04 +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 4304933EA60 for ; Fri, 26 Jul 2013 16:14:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3749AE5467 for ; Fri, 26 Jul 2013 16:14:01 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1374780409.b7920b669aacd4465b75be38c8ee86d3f35ab797.nicolasbock@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/dealii/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/dealii/dealii-9999.ebuild X-VCS-Directories: sci-libs/dealii/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: b7920b669aacd4465b75be38c8ee86d3f35ab797 X-VCS-Branch: master Date: Fri, 26 Jul 2013 16:14:01 +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: 9338f41c-7067-4336-9768-875c2a5797fa X-Archives-Hash: 1856424af5029f8d9751d5d850926d94 commit: b7920b669aacd4465b75be38c8ee86d3f35ab797 Author: Matthias Maier kyomu 43-1 org> AuthorDate: Thu Jul 25 19:26:49 2013 +0000 Commit: Nicolas Bock gmail com> CommitDate: Thu Jul 25 19:26:49 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b7920b66 use "${BUILD_DIR}" instead of "${WORKDIR}"/${P}_build --- sci-libs/dealii/dealii-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/dealii/dealii-9999.ebuild b/sci-libs/dealii/dealii-9999.ebuild index 2d4516b..9cc9812 100644 --- a/sci-libs/dealii/dealii-9999.ebuild +++ b/sci-libs/dealii/dealii-9999.ebuild @@ -109,11 +109,11 @@ src_install() { if use doc; then if [[ ${PV} != "9999" ]] ; then # copy missing images to the build directory: - cp -r "${WORKDIR}"/doc/doxygen/deal.II/images "${WORKDIR}"/${P}_build/doc/doxygen/deal.II + cp -r "${WORKDIR}"/doc/doxygen/deal.II/images "${BUILD_DIR}"/doc/doxygen/deal.II # replace links: sed -i \ 's#"http://www.dealii.org/images/steps/developer/\(step-.*\)"#"images/\1"#g' \ - "${WORKDIR}"/${P}_build/doc/doxygen/deal.II/step_*.html || die "sed failed" + "${BUILD_DIR}"/doc/doxygen/deal.II/step_*.html || die "sed failed" fi fi cmake-utils_src_install