From: Giovanni Santini Date: Mon, 18 May 2026 20:46:05 +0000 (+0200) Subject: Makefile: fix extra dash in KBUILD_CFLAGS X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=81d60060831afa50a43a6dcaf8e34932e6b8ccc2;p=thirdparty%2Fu-boot.git Makefile: fix extra dash in KBUILD_CFLAGS Remove an extra leading dash from the KBUILD_CFLAGS assignment under the CONFIG_CC_OPTIMIZE_FOR_DEBUG conditional block. The extra dash breaks the build when CONFIG_CC_OPTIMIZE_FOR_DEBUG is enabled. Fixes: 56ae3c2a44fc ("Makefile: repair CONFIG_CC_OPTIMIZE_FOR_DEBUG support") Signed-off-by: Giovanni Santini Reviewed-by: Simon Glass --- diff --git a/Makefile b/Makefile index f07faada3d5..e276755c489 100644 --- a/Makefile +++ b/Makefile @@ -920,7 +920,7 @@ endif ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE KBUILD_CFLAGS += -Os else ifdef CONFIG_CC_OPTIMIZE_FOR_DEBUG --KBUILD_CFLAGS += -Og +KBUILD_CFLAGS += -Og # Avoid false positives -Wmaybe-uninitialized # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394 KBUILD_CFLAGS += -Wno-maybe-uninitialized