diff options
author | Ian Lynagh <igloo@earth.li> | 2010-05-06 21:21:41 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-05-06 21:21:41 +0000 |
commit | fefe9f991793fa6b8f343cc85139443604f5adb0 (patch) | |
tree | a1001a41f48ff5e01697f2f91c6acea72a5f040e /testsuite/tests/ghc-regress/module | |
parent | 4e4f63190841f75d6fc30adb8e216012c0251fd1 (diff) | |
download | haskell-fefe9f991793fa6b8f343cc85139443604f5adb0.tar.gz |
Fix quoting in mod175
Diffstat (limited to 'testsuite/tests/ghc-regress/module')
-rw-r--r-- | testsuite/tests/ghc-regress/module/mod175/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghc-regress/module/mod175/Makefile b/testsuite/tests/ghc-regress/module/mod175/Makefile index 5f744e2189..92f1ccbc49 100644 --- a/testsuite/tests/ghc-regress/module/mod175/Makefile +++ b/testsuite/tests/ghc-regress/module/mod175/Makefile @@ -12,8 +12,8 @@ clean: mod175: $(MAKE) clean - $(TEST_HC) -v0 --make -main-is Test.main Test.hs -o test - $(TEST_HC) -v0 --make -main-is Test2.main Test2.hs -o test2 + '$(TEST_HC)' -v0 --make -main-is Test.main Test.hs -o test + '$(TEST_HC)' -v0 --make -main-is Test2.main Test2.hs -o test2 ./test ./test2 |