commit: e04a74d0358e6aa6f19b8cadbb5504b81af0e52a Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Thu Nov 4 21:56:10 2021 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Nov 4 21:57:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04a74d0
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 <AT> gentoo.org> dev-lua/luadbi/luadbi-0.7.2-r103.ebuild | 6 +++--- 1 file 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 0f05380ff39..c158bd4ebfd 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() {
