From 34b508be9f021831423a8a14f56dff547e24c743 Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Thu, 20 May 2021 13:18:14 +0200 Subject: [PATCH] fix(makefile): use space in WARNINGS list The tab between -Wdisabled-optimization and -Wvla is replaced with a space. This avoids having it removed when copy/pasting the compilation command line, and having the following error: arm-none-eabi-gcc: error: unrecognized command line option '-Wdisabled-optimization-Wvla'; did you mean '-Wdisabled-optimization'? Signed-off-by: Yann Gautier Change-Id: I72de2a70d192a7813b1f9b55485914142d1fc428 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2376b9acc..14c056dde 100644 --- a/Makefile +++ b/Makefile @@ -334,7 +334,7 @@ ASFLAGS_aarch64 = $(march64-directive) # General warnings WARNINGS := -Wall -Wmissing-include-dirs -Wunused \ - -Wdisabled-optimization -Wvla -Wshadow \ + -Wdisabled-optimization -Wvla -Wshadow \ -Wno-unused-parameter -Wredundant-decls # Additional warnings -- GitLab