From 9ecdcd8bb6053cbaad9280c556192d37213a664c Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Wed, 1 May 2024 11:02:10 +0300 Subject: [PATCH] test, watcom makefile: change copy command to use a dos path separator fixes copy failure with recent open watcom wmake changes. (Issue reported mainstream as https://github.com/open-watcom/open-watcom-v2/issues/1281) --- test/watcom.mif | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/watcom.mif b/test/watcom.mif index b81dad831e..aa15f66954 100644 --- a/test/watcom.mif +++ b/test/watcom.mif @@ -108,14 +108,14 @@ testutils.lib: testutils.obj check: .SYMBOLIC $(TESTS) @set SDL_AUDIODRIVER=dummy @set SDL_VIDEODRIVER=dummy - @copy "../SDL2.dll" . + @copy ..\SDL2.dll . @for %exe in ($(TESTS)) do %exe check-quick: .SYMBOLIC $(TESTS) @set SDL_TESTS_QUICK=1 @set SDL_AUDIODRIVER=dummy @set SDL_VIDEODRIVER=dummy - @copy "../SDL2.dll" . + @copy ..\SDL2.dll . @for %exe in ($(TESTS)) do %exe clean: .SYMBOLIC