diff options
author | 2022-02-10 10:53:59 +0100 | |
---|---|---|
committer | 2022-02-10 10:53:59 +0100 | |
commit | ef5429f4243a97439797a74dc22cbaf22458e5e1 (patch) | |
tree | bac8bf0b82b00a083371576d7546418ead584257 /app-crypt | |
parent | net-firewall/nftables: Stabilize 1.0.1-r1 amd64, #832395 (diff) | |
download | gentoo-ef5429f4243a97439797a74dc22cbaf22458e5e1.tar.gz gentoo-ef5429f4243a97439797a74dc22cbaf22458e5e1.tar.bz2 gentoo-ef5429f4243a97439797a74dc22cbaf22458e5e1.zip |
app-crypt/gpgme: [QA] add die and use emake
* `|| die` is also required for popd
* python was being built without -jX or MAKEOPTS
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gpgme/gpgme-1.17.0.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-crypt/gpgme/gpgme-1.17.0.ebuild b/app-crypt/gpgme/gpgme-1.17.0.ebuild index c6303a56b2af..06d6ea0cfaa9 100644 --- a/app-crypt/gpgme/gpgme-1.17.0.ebuild +++ b/app-crypt/gpgme/gpgme-1.17.0.ebuild @@ -33,8 +33,8 @@ REQUIRED_USE="qt5? ( cxx ) python? ( ${PYTHON_REQUIRED_USE} )" do_python() { if use python; then pushd "lang/python" > /dev/null || die - top_builddir="../.." srcdir="." CPP=$(tc-getCPP) distutils-r1_src_${EBUILD_PHASE} - popd > /dev/null + top_builddir="../.." srcdir="." CPP="$(tc-getCPP)" distutils-r1_src_${EBUILD_PHASE} + popd > /dev/null || die fi } @@ -54,7 +54,7 @@ src_prepare() { # Make best effort to allow longer PORTAGE_TMPDIR # as usock limitation fails build/tests - ln -s "${P}" "${WORKDIR}/b" + ln -s "${P}" "${WORKDIR}/b" || die S="${WORKDIR}/b" } @@ -74,7 +74,7 @@ src_configure() { --enable-languages="${languages[*]}" \ $(use_enable static-libs static) - use python && make -C lang/python prepare + use python && emake -C lang/python prepare do_python } |