Skip to content

Commit

Permalink
apps/lvgl: fix distclean warnings
Browse files Browse the repository at this point in the history
  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 <xuxingliang@xiaomi.com>
XuNeo authored and xiaoxiang781216 committed Apr 30, 2024
1 parent ac93ce5 commit 943aa68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions graphics/lvgl/Makefile
Original file line number Diff line number Diff line change
@@ -64,10 +64,12 @@ $(LVGL_UNPACKNAME): $(LVGL_TARBALL)
# Download and unpack tarball if no git repo found
ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
context:: $(LVGL_UNPACKNAME)
endif

include $(APPDIR)/Application.mk

ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
distclean::
$(call DELDIR, $(LVGL_UNPACKNAME))
$(call DELFILE, $(LVGL_TARBALL))
endif

include $(APPDIR)/Application.mk

0 comments on commit 943aa68

Please sign in to comment.