From 7ec1f83d7c67d27c1a1160dc59abe105d777f6a3 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Thu, 3 Oct 2019 12:06:55 -0400 Subject: testsuite: Fix quoting of $(TEST_HC) in T12674 I have no idea how this went unnoticed until now. --- testsuite/tests/driver/T12674/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/tests/driver/T12674/Makefile b/testsuite/tests/driver/T12674/Makefile index 81ac0e67cf..d73d0b40b7 100644 --- a/testsuite/tests/driver/T12674/Makefile +++ b/testsuite/tests/driver/T12674/Makefile @@ -4,10 +4,10 @@ include $(TOP)/mk/test.mk # Uses Makefile to ensure that the testsuite driver doesn't normalize away the ./ T12674: - $(TEST_HC) $(TEST_HC_OPTS) -v0 -o T12674 ./-T12674.hs ././-T12674c.c + "$(TEST_HC)" $(TEST_HC_OPTS) -v0 -o T12674 ./-T12674.hs ././-T12674c.c ./T12674 T12674w: - $(TEST_HC) $(TEST_HC_OPTS) -v0 -o T12674 .\\\-T12674.hs .\\\.\\\-T12674c.c + "$(TEST_HC)" $(TEST_HC_OPTS) -v0 -o T12674 .\\\-T12674.hs .\\\.\\\-T12674c.c ./T12674 -- cgit v1.2.1