win: tests Makefile: fix global path
Commitbb93064changed 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:
@ -51,7 +51,7 @@ ifndef CONFIG_CROSS
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_WIN32
|
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
|
endif
|
||||||
|
|
||||||
ifeq ($(TARGETOS),Darwin)
|
ifeq ($(TARGETOS),Darwin)
|
||||||
|
|||||||
Reference in New Issue
Block a user