diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-11-04 22:56:10 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-11-04 22:57:06 +0100 |
commit | e04a74d0358e6aa6f19b8cadbb5504b81af0e52a (patch) | |
tree | 2bfccae40baf2c537e944dca76bf067b71573f73 /dev-lua | |
parent | sys-apps/portage: require sphinx-epytext[${PYTHON_USEDEP}] (diff) | |
download | gentoo-e04a74d0358e6aa6f19b8cadbb5504b81af0e52a.tar.gz gentoo-e04a74d0358e6aa6f19b8cadbb5504b81af0e52a.tar.bz2 gentoo-e04a74d0358e6aa6f19b8cadbb5504b81af0e52a.zip |
dev-lua/luadbi: fix die
Closes: https://bugs.gentoo.org/821724
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua')
-rw-r--r-- | dev-lua/luadbi/luadbi-0.7.2-r103.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild index 0f05380ff39f..c158bd4ebfd0 100644 --- a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild +++ b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild @@ -62,7 +62,7 @@ lua_src_compile() { use postgres && emake ${myemakeargs} PSQL_INC="-I$(pg_config --libdir)" psql use sqlite emake ${myemakeargs} SQLITE3_INC="-I/usr/include" sqlite - die + popd } src_compile() { @@ -72,7 +72,7 @@ src_compile() { lua_src_test() { pushd "${BUILD_DIR}" || die cd "${S}"/tests && ${ELUA} run_tests.lua || die - die + popd } src_test() { @@ -93,7 +93,7 @@ lua_src_install() { use postgres && emake ${myemakeargs[@]} install_psql use sqlite && emake ${myemakeargs[@]} install_sqlite3 - die + popd } src_install() { |