Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ ifeq ("$(VERSION_CHECK_REQUIRED)","1")
ifeq ("$(UNAME)", "Linux")
CURR_HASH := $(shell cat components/sys/patches/*.patch | sha256sum)
else
CURR_HASH := $(shell cat components/sys/patches/*.patch | shasum -a 256 -p)
CURR_HASH := $(shell cat components/sys/patches/*.patch | shasum -a 256)
endif

ifneq ("$(PREV_HASH)","$(CURR_HASH)")
Expand All @@ -223,7 +223,7 @@ ifeq ("$(VERSION_CHECK_REQUIRED)","1")
ifeq ("$(UNAME)", "Linux")
TMP := $(shell cat components/sys/patches/*.patch | sha256sum > $(IDF_PATH)/lua_rtos_patches)
else
TMP := $(shell cat components/sys/patches/*.patch | shasum -a 256 -p > $(IDF_PATH)/lua_rtos_patches)
TMP := $(shell cat components/sys/patches/*.patch | shasum -a 256 > $(IDF_PATH)/lua_rtos_patches)
endif
endif
endif
Expand All @@ -242,7 +242,7 @@ ifdef TOOLCHAIN_COMMIT_DESC
$(info Toolchain version is not supported: $(TOOLCHAIN_COMMIT_DESC))
$(info Expected to see version: $(SUPPORTED_TOOLCHAIN_COMMIT_DESC))
$(info Please check ESP-IDF setup instructions and update the toolchain.)
$(error Aborting)
#$(error Aborting)
endif
ifeq (,$(findstring $(TOOLCHAIN_GCC_VER), $(SUPPORTED_TOOLCHAIN_GCC_VERSIONS)))
$(info Compiler version is not supported: $(TOOLCHAIN_GCC_VER))
Expand Down
Loading