From 6b44c59beeffd1a72f30f9090ac6d78e78ce4df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 22 Feb 2023 11:57:58 +0100 Subject: [PATCH] graphics/lvgl: fix build due to no-format-security MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this change the build produces error: error: ‘-Wformat-security’ ignored without ‘-Wformat’ --- graphics/lvgl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/lvgl/Makefile b/graphics/lvgl/Makefile index e16bf05e3..8ae2753b7 100644 --- a/graphics/lvgl/Makefile +++ b/graphics/lvgl/Makefile @@ -27,7 +27,7 @@ LVGL_DIR_NAME = lvgl # Relax LVGL's format checking and unused variable checking to avoid errors -CFLAGS += -Wno-format -Wno-unused-variable +CFLAGS += -Wno-format -Wno-format-security -Wno-unused-variable -include ./lvgl/lvgl.mk