diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-03 12:06:55 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-29 03:46:59 -0400 |
commit | ebee0d6b902ee50467e8471a3676ba652679b27d (patch) | |
tree | 4096e4bd5c86b44e5da1ff4c2d70742dcc964589 /testsuite/tests | |
parent | db43b3b3079842fb2baf6d181ef39374acf0053c (diff) | |
download | haskell-ebee0d6b902ee50467e8471a3676ba652679b27d.tar.gz |
testsuite: Fix quoting of $(TEST_HC) in T12674
I have no idea how this went unnoticed until now.
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/driver/T12674/Makefile | 4 |
1 files 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 |