Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lunzip/
Date: Mon, 24 Jan 2022 21:21:51
Message-Id: 1643059190.713cd063254e5e18355435b8e0576e73dff5ab48.mgorny@gentoo
1 commit: 713cd063254e5e18355435b8e0576e73dff5ab48
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 24 21:19:50 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 24 21:19:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713cd063
7
8 app-arch/lunzip: Fix CC/CFLAGS overrides
9
10 Closes: https://bugs.gentoo.org/831993
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-arch/lunzip/lunzip-1.13.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/app-arch/lunzip/lunzip-1.13.ebuild b/app-arch/lunzip/lunzip-1.13.ebuild
17 index 5c5c0ab1b983..4f7d48dab0be 100644
18 --- a/app-arch/lunzip/lunzip-1.13.ebuild
19 +++ b/app-arch/lunzip/lunzip-1.13.ebuild
20 @@ -17,9 +17,9 @@ src_configure() {
21 # not autotools-based
22 local myconf=(
23 --prefix="${EPREFIX}"/usr
24 - CXX="$(tc-getCXX)"
25 + CC="$(tc-getCC)"
26 CPPFLAGS="${CPPFLAGS}"
27 - CXXFLAGS="${CXXFLAGS}"
28 + CFLAGS="${CFLAGS}"
29 LDFLAGS="${LDFLAGS}"
30 )