commit: b81bdfbd427e687819f919847dbed2827bc7515e
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 10:05:02 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 10:06:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b81bdfbd
dev-lua/luarocks: patch LUA_LIBDIR check
If 'dev-lang/lua' is a new, fresh installation, no 'LUA_LIBDIR' exists,
as no compiled modules are installed on a new, fresh installation,
so this check must be disabled, otherwise 'configure' will fail.
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-lua/luarocks/luarocks-3.4.0-r100.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/dev-lua/luarocks/luarocks-3.4.0-r100.ebuild
b/dev-lua/luarocks/luarocks-3.4.0-r100.ebuild
index 4a4286ebda0..8075c2212cf 100644
--- a/dev-lua/luarocks/luarocks-3.4.0-r100.ebuild
+++ b/dev-lua/luarocks/luarocks-3.4.0-r100.ebuild
@@ -36,6 +36,15 @@ BDEPEND="
)
"
+src_prepare() {
+ default
+
+ # If 'dev-lang/lua' is a new, fresh installation, no 'LUA_LIBDIR'
exists,
+ # as no compiled modules are installed on a new, fresh installation,
+ # so this check must be disabled, otherwise 'configure' will fail.
+ sed -e '/LUA_LIBDIR is not a valid directory/d' -i configure || die
+}
+
src_configure() {
local myeconfargs=(
"--prefix=${EPREFIX}/usr"