mirror of
https://github.com/frida/tinycc
synced 2025-01-27 05:29:26 +03:00
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
@ -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 New Issue
Block a user