win: tests Makefile: fix global path
Commitbb93064
changed the path seperator from ':' to ';', which was likely accidental. While path seperator on Windows is generally ';', the Makefile clearly expects a posix-y shell, and in such environments the separator is ':'. This fixes the test run in MSYS2 and MSYS(1) environments, which got broken onbb93064
.
This commit is contained in:
parent
206829415a
commit
2da36731da
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ ifndef CONFIG_CROSS
|
|||
endif
|
||||
|
||||
ifdef CONFIG_WIN32
|
||||
PATH := $(CURDIR)/$(TOP);$(PATH) # for libtcc_test to find libtcc.dll
|
||||
PATH := $(CURDIR)/$(TOP):$(PATH) # for libtcc_test to find libtcc.dll
|
||||
endif
|
||||
|
||||
ifeq ($(TARGETOS),Darwin)
|
||||
|
|
Loading…
Reference in a new issue