From 06c99e556c373fab214396026603c60110ae371f Mon Sep 17 00:00:00 2001 From: Ilkka Poutanen Date: Thu, 27 Jan 2022 08:04:04 +0200 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfbd4794..97bc530f 100644 --- a/Makefile +++ b/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 $@