Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apps/lvgl: fix distclean warnings #2373

Merged
merged 1 commit into from
Apr 30, 2024

Conversation

XuNeo
Copy link
Contributor

@XuNeo XuNeo commented Apr 30, 2024

Summary

LVGL uses shell find to set CSRCS. LVGL sources have already been deleted when Application.mk is included at file end, thus causing the warning.

lvgl/lvgl.mk

LVGL_PATH ?= ${shell pwd}/lvgl

ASRCS += $(shell find $(LVGL_PATH)/src -type f -name '*.S')
CSRCS += $(shell find $(LVGL_PATH)/src -type f -name '*.c')
CSRCS += $(shell find $(LVGL_PATH)/demos -type f -name '*.c')
CSRCS += $(shell find $(LVGL_PATH)/examples -type f -name '*.c')
CXXEXT := .cpp
CXXSRCS += $(shell find $(LVGL_PATH)/src -type f -name '*${CXXEXT}')

AFLAGS += "-I$(LVGL_PATH)"
CFLAGS += "-I$(LVGL_PATH)"
CXXFLAGS += "-I$(LVGL_PATH)"

Cleaning...
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/demos': No such file or directory find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/examples': No such file or directory find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory

Impact

Testing

  Cleaning...
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/demos': No such file or directory
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/examples': No such file or directory
find: '/github/workspace/sources/apps/graphics/lvgl/lvgl/src': No such file or directory

Signed-off-by: Xu Xingliang <[email protected]>
@xiaoxiang781216 xiaoxiang781216 merged commit 943aa68 into apache:master Apr 30, 2024
25 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants