diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-08-26 12:01:09 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-08-26 13:02:22 +0200 |
commit | badbb0e76e7debe8c0c03116a64f151af8382b22 (patch) | |
tree | 1dd8a911c8bc9e5f4e77260396a8c0bff6dbd3f4 /sci-libs/itpp | |
parent | sci-libs/alglib: EAPI-6 (diff) | |
download | gentoo-badbb0e76e7debe8c0c03116a64f151af8382b22.tar.gz gentoo-badbb0e76e7debe8c0c03116a64f151af8382b22.tar.bz2 gentoo-badbb0e76e7debe8c0c03116a64f151af8382b22.zip |
sci-libs/itpp: Add missing || die
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'sci-libs/itpp')
-rw-r--r-- | sci-libs/itpp/itpp-4.3.1-r1.ebuild | 6 |
1 files 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 3abddec3041b..53cdbee6564e 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)#" \ |