diff options
| author | Avi Halachmi (:avih) <avihpit@yahoo.com> | 2017-02-26 15:41:22 +0200 |
|---|---|---|
| committer | Avi Halachmi (:avih) <avihpit@yahoo.com> | 2017-02-26 15:41:26 +0200 |
| commit | 2da36731da695d0a07e2ecb7000c78dcc57e0879 (patch) | |
| tree | 8fd7077c8a31af747fc45f05fa8cbd4ccd6d22a2 /tests | |
| parent | 206829415a0040d8233ee36bb764ebe077d7571b (diff) | |
| download | tinycc-2da36731da695d0a07e2ecb7000c78dcc57e0879.tar.gz tinycc-2da36731da695d0a07e2ecb7000c78dcc57e0879.tar.bz2 | |
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 .
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index fdd57b2..e4e2556 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -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) |
