Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/rrdtool/
Date: Tue, 06 Sep 2022 09:16:23
Message-Id: 1662455764.c3c4c1e1ee4df63e23f0a1596dd883d734536a99.soap@gentoo
1 commit: c3c4c1e1ee4df63e23f0a1596dd883d734536a99
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 09:16:04 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 09:16:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c4c1e1
7
8 net-analyzer/rrdtool: quote emake arguments for lua's CFLAGS
9
10 Closes: https://bugs.gentoo.org/868675
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-analyzer/rrdtool/rrdtool-1.8.0.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/net-analyzer/rrdtool/rrdtool-1.8.0.ebuild b/net-analyzer/rrdtool/rrdtool-1.8.0.ebuild
17 index ad96cbb55058..9d56454bf1fe 100644
18 --- a/net-analyzer/rrdtool/rrdtool-1.8.0.ebuild
19 +++ b/net-analyzer/rrdtool/rrdtool-1.8.0.ebuild
20 @@ -159,13 +159,13 @@ lua_src_compile() {
21 # We do need the CMOD-dir path here, otherwise libtool complains.
22 # Use the real one (i.e. not within ${ED}) just in case.
23 local myemakeargs=(
24 - LUA_CFLAGS=$(lua_get_CFLAGS)
25 + LUA_CFLAGS="$(lua_get_CFLAGS)"
26 LUA_INSTALL_CMOD="$(lua_get_cmod_dir)"
27 )
28
29 emake "${myemakeargs[@]}"
30
31 - popd
32 + popd || die
33 }
34
35 python_compile() {