mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
Fixed bug where CFLAGS doesn't respect make.conf settings. Signed-off-by: Abdelrahman Sarhan <abdulrahmanayman1@gmail.com>
12 lines
377 B
Diff
12 lines
377 B
Diff
--- a/configure.ac 2024-10-22 14:32:01.009784223 -0400
|
|
+++ b/configure.ac 2024-10-22 14:38:40.706790279 -0400
|
|
@@ -28,7 +28,7 @@
|
|
if test "$GCC" = "yes"
|
|
then
|
|
WARNINGS="-Wall -Wdeclaration-after-statement -Wredundant-decls"
|
|
- CFLAGS="-O$OPT_LEVEL -g $WARNINGS $orig_CFLAGS"
|
|
+ CFLAGS="$WARNINGS $orig_CFLAGS"
|
|
fi
|
|
|
|
PKG_CHECK_MODULES(SDL, [sdl2 >= 2.0.7])
|