Makefiles: Change ${shell pwd} to $(CURDIR) since pwd doesn't exist on Windows

This commit is contained in:
Xiang Xiao 2019-10-02 07:06:50 -06:00 committed by Gregory Nutt
parent f7229b24fe
commit e73ca15c99
6 changed files with 6 additions and 11 deletions

View file

@ -39,7 +39,7 @@
# Set up build configuration and environment
WD := ${shell pwd | sed -e 's/ /\\ /g'}
WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
CONFIG_TESTING_UNITY_URL ?= "https://github.com/ThrowTheSwitch/Unity/archive"
CONFIG_TESTING_UNITY_VERSION ?= "2.4.3"