net-analyzer/rrdtool: quote emake arguments for lua's CFLAGS

Closes: https://bugs.gentoo.org/868675
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2022-09-06 11:16:04 +02:00
parent ad714403f6
commit c3c4c1e1ee

View File

@@ -159,13 +159,13 @@ lua_src_compile() {
# We do need the CMOD-dir path here, otherwise libtool complains.
# Use the real one (i.e. not within ${ED}) just in case.
local myemakeargs=(
LUA_CFLAGS=$(lua_get_CFLAGS)
LUA_CFLAGS="$(lua_get_CFLAGS)"
LUA_INSTALL_CMOD="$(lua_get_cmod_dir)"
)
emake "${myemakeargs[@]}"
popd
popd || die
}
python_compile() {