win: tests Makefile: fix global path

Commit bb93064 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 on bb93064 .
master
Avi Halachmi (:avih) 2017-02-26 15:41:22 +02:00
parent 206829415a
commit 2da36731da
1 changed files with 1 additions and 1 deletions

View File

@ -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)