From 2da36731da695d0a07e2ecb7000c78dcc57e0879 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Sun, 26 Feb 2017 15:41:22 +0200 Subject: [PATCH] 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 . --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)