diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-14 22:42:25 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-14 22:45:44 +0200 |
commit | b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e (patch) | |
tree | e4bf19914299f495aa0a06f7c4b98e06506a67f7 | |
parent | media-tv/kodi: mariadb-connector-c's mysqlcompat isn't required (diff) | |
download | gentoo-b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e.tar.gz gentoo-b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e.tar.bz2 gentoo-b9a0956be6cfedb4fe5cb4d4f94b1675db4dff3e.zip |
sci-chemistry/apbs: Several missing || die
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
-rw-r--r-- | sci-chemistry/apbs/apbs-1.4.1-r2.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild index aecbcd3ce745..2f20af9fb69d 100644 --- a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild +++ b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -63,7 +63,8 @@ src_prepare() { use doc && MAKEOPTS+=" -j1" if use python; then unset PATCHES || die - cd tools/python && distutils-r1_src_prepare + cd tools/python || die + distutils-r1_src_prepare fi } @@ -92,7 +93,8 @@ src_configure() { ) cmake-utils_src_configure if use python; then - cd tools/python && distutils-r1_src_configure + cd tools/python || die + distutils-r1_src_configure fi } @@ -100,7 +102,8 @@ src_compile(){ cmake-utils_src_compile if use python; then append-ldflags -L"${S}"/lib - cd tools/python && distutils-r1_src_compile + cd tools/python || die + distutils-r1_src_compile fi } @@ -121,7 +124,8 @@ src_install() { fi done if use python; then - cd tools/python && distutils-r1_src_install + cd tools/python || die + distutils-r1_src_install rm -rf "${ED}"/usr/share/apbs/tools/python || die fi } |