Fix build for WSL users (#3499)
This change prevents the shell from erroring out with `$PATH` values that contain e.g. parentheses, as is likely for WSL users.
This commit is contained in:
parent
46959c1bae
commit
10e566babc
2
Makefile
2
Makefile
|
@ -333,7 +333,7 @@ $(TOP_DIR)/sdk/.extracted-$(SDK_VER): $(TOP_DIR)/cache/$(SDK_FILE_VER).zip
|
|||
$(TOP_DIR)/sdk/.pruned-$(SDK_VER):
|
||||
rm -f $(SDK_DIR)/lib/liblwip.a $(SDK_DIR)/lib/libssl.a $(SDK_DIR)/lib/libmbedtls.a
|
||||
$(summary) PRUNE libmain.a libc.a
|
||||
echo $(PATH)
|
||||
echo "$(PATH)"
|
||||
$(AR) d $(SDK_DIR)/lib/libmain.a time.o
|
||||
$(AR) d $(SDK_DIR)/lib/libc.a lib_a-time.o
|
||||
touch $@
|
||||
|
|
Loading…
Reference in New Issue