From e2b19eb4acd87c25166d20b0e993d3d8cca6f467 Mon Sep 17 00:00:00 2001 From: defogprog <22955033+defogprog@users.noreply.github.com> Date: Fri, 8 Sep 2023 23:06:59 +0300 Subject: [PATCH] fix: build on Windows (MinGW environment) (#4538) Co-authored-by: Andrii Samozvon --- examples/lv_examples.mk | 2 +- src/extra/lv_extra.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/lv_examples.mk b/examples/lv_examples.mk index b8fa7eb5a..2586e3381 100644 --- a/examples/lv_examples.mk +++ b/examples/lv_examples.mk @@ -1 +1 @@ -CSRCS += $(shell find -L $(LVGL_DIR)/$(LVGL_DIR_NAME)/examples -name \*.c) +CSRCS += $(shell find -L $(LVGL_DIR)/$(LVGL_DIR_NAME)/examples -name "*.c") diff --git a/src/extra/lv_extra.mk b/src/extra/lv_extra.mk index 1afcc7b7f..8d418adb0 100644 --- a/src/extra/lv_extra.mk +++ b/src/extra/lv_extra.mk @@ -1 +1 @@ -CSRCS += $(shell find -L $(LVGL_DIR)/$(LVGL_DIR_NAME)/src/extra -name \*.c) +CSRCS += $(shell find -L $(LVGL_DIR)/$(LVGL_DIR_NAME)/src/extra -name "*.c")