Skip to content

Commit 0975436

Browse files
yamtxiaoxiang781216
authored andcommitted
fs/littlefs/Make.defs: fix a littlefs unpack regression
Note that $(CONFIG_FS_LITTLEFS_VERSION).tar.gz is expanded to eg. "v2.5.1".tar.gz. The extra quotes break make's file existence checks. Fixes: apache#15148 The regression was caused by apache#14903
1 parent 7036098 commit 0975436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/littlefs/Make.defs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ifeq ($(CONFIG_FS_LITTLEFS_MULTI_VERSION),y)
5959
CFLAGS += -DLFS_MULTIVERSION
6060
endif
6161

62-
LITTLEFS_TARBALL = $(CONFIG_FS_LITTLEFS_VERSION).tar.gz
62+
LITTLEFS_TARBALL = $(shell echo $(CONFIG_FS_LITTLEFS_VERSION).tar.gz)
6363

6464
$(LITTLEFS_TARBALL):
6565
$(call DOWNLOAD,https://github.com/ARMmbed/littlefs/archive,$(LITTLEFS_TARBALL),littlefs/$(LITTLEFS_TARBALL))

0 commit comments

Comments
 (0)