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 F218A138336 for ; Sun, 26 Aug 2018 11:02:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEF13E07D8; Sun, 26 Aug 2018 11:02:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C75A9E07D8 for ; Sun, 26 Aug 2018 11:02:38 +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 58317335CBF for ; Sun, 26 Aug 2018 11:02:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 001063B5 for ; Sun, 26 Aug 2018 11:02:36 +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: <1535281342.badbb0e76e7debe8c0c03116a64f151af8382b22.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/itpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/itpp/itpp-4.3.1-r1.ebuild X-VCS-Directories: sci-libs/itpp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: badbb0e76e7debe8c0c03116a64f151af8382b22 X-VCS-Branch: master Date: Sun, 26 Aug 2018 11:02:36 +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: b69e0f26-c115-40b3-82e0-659af1a3ebf1 X-Archives-Hash: 0cc187b51ea42ae3328598f67209bfa1 commit: badbb0e76e7debe8c0c03116a64f151af8382b22 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 26 10:01:09 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 26 11:02:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badbb0e7 sci-libs/itpp: Add missing || die Package-Manager: Portage-2.3.48, Repoman-2.3.10 sci-libs/itpp/itpp-4.3.1-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-libs/itpp/itpp-4.3.1-r1.ebuild b/sci-libs/itpp/itpp-4.3.1-r1.ebuild index 3abddec3041..53cdbee6564 100644 --- a/sci-libs/itpp/itpp-4.3.1-r1.ebuild +++ b/sci-libs/itpp/itpp-4.3.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -37,8 +37,8 @@ src_prepare() { itpp/CMakeLists.txt || die # respect gentoo libdir - sed -i "s#/lib#/$(get_libdir)#" itpp-config.cmake.in - sed -i "s#/lib#/$(get_libdir)#" itpp.pc.cmake.in + sed -i "s#/lib#/$(get_libdir)#" itpp-config.cmake.in || die + sed -i "s#/lib#/$(get_libdir)#" itpp.pc.cmake.in || die sed -i \ -e "s#LIBRARY DESTINATION lib#LIBRARY DESTINATION $(get_libdir)#" \ -e "s#ARCHIVE DESTINATION lib#ARCHIVE DESTINATION $(get_libdir)#" \