mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Signed-off-by: Vladislav Mikhailikov <vmikhailikov@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42728 Closes: https://github.com/gentoo/gentoo/pull/42728 Signed-off-by: Sam James <sam@gentoo.org>
16 lines
331 B
Diff
16 lines
331 B
Diff
do not erase userflags
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -80,9 +80,9 @@
|
|
[enable_debug=yes])
|
|
|
|
if test "x$enable_debug" = xyes; then
|
|
- CFLAGS="-g -DDEBUG"
|
|
+ CFLAGS="-g -DDEBUG $CFLAGS"
|
|
else
|
|
- CFLAGS="-O2 -DNDEBUG"
|
|
+ CFLAGS="-DNDEBUG $CFLAGS"
|
|
fi
|
|
#AM_CONDITIONAL(ENABLE_DEBUG, test "$enable_debug" = "yes")
|
|
|