diff options
author | 2023-03-01 22:29:51 +0000 | |
---|---|---|
committer | 2023-03-01 23:11:58 +0000 | |
commit | b17adffd47e3d9b107b7c25fb1f17a2edf3df605 (patch) | |
tree | ecb26de8b60a572b42228074594aa09000318e89 /net-analyzer/suricata | |
parent | media-gfx/gmic: only build one target at a time (diff) | |
download | gentoo-b17adffd47e3d9b107b7c25fb1f17a2edf3df605.tar.gz gentoo-b17adffd47e3d9b107b7c25fb1f17a2edf3df605.tar.bz2 gentoo-b17adffd47e3d9b107b7c25fb1f17a2edf3df605.zip |
net-analyzer/suricata: allow ignoring CFLAGS for USE=debug
We set specific compiler flags when Suricata is built in debug mode in
order to confirm with upstream bug-reporting policy.
Closes: https://bugs.gentoo.org/889748
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-analyzer/suricata')
-rw-r--r-- | net-analyzer/suricata/suricata-6.0.10.ebuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net-analyzer/suricata/suricata-6.0.10.ebuild b/net-analyzer/suricata/suricata-6.0.10.ebuild index 69445880fb19..697b19988894 100644 --- a/net-analyzer/suricata/suricata-6.0.10.ebuild +++ b/net-analyzer/suricata/suricata-6.0.10.ebuild @@ -119,6 +119,7 @@ src_configure() { if use debug; then myeconfargs+=( $(use_enable debug) ) # so we can get a backtrace according to "reporting bugs" on upstream web site + QA_FLAGS_IGNORED="usr/bin/${PN}" CFLAGS="-ggdb -O0" econf ${myeconfargs[@]} else econf ${myeconfargs[@]} |