diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-07 14:21:45 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-07 14:21:45 +0000 |
commit | eff6546a1f0cf540187d8b62eaa1c20ebfe30271 (patch) | |
tree | 875d773ad2075e1c933ecbd7724e187a67838732 /testsuite/tests/plugins/Makefile | |
parent | 0aee23185fe78b81e4a0dbee0dda940bacc0dc07 (diff) | |
download | haskell-eff6546a1f0cf540187d8b62eaa1c20ebfe30271.tar.gz |
plugins01 should be using $(TEST_HC_OPTS), not $(HC_OPTS)
Removes the need to explicitly pass it -fforce-recomp
Diffstat (limited to 'testsuite/tests/plugins/Makefile')
-rw-r--r-- | testsuite/tests/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/plugins/Makefile b/testsuite/tests/plugins/Makefile index 136593b1bd..ccabade439 100644 --- a/testsuite/tests/plugins/Makefile +++ b/testsuite/tests/plugins/Makefile @@ -5,6 +5,6 @@ include $(TOP)/mk/test.mk .PHONY: plugins01 plugins01: - "$(TEST_HC)" $(HC_OPTS) -fforce-recomp --make -v0 plugins01.hs -package-db simple-plugin/pkg.plugins01/local.package.conf -fplugin Simple.Plugin -fplugin-opt Simple.Plugin:Irrelevant_Option -package simple-plugin + "$(TEST_HC)" $(TEST_HC_OPTS) --make -v0 plugins01.hs -package-db simple-plugin/pkg.plugins01/local.package.conf -fplugin Simple.Plugin -fplugin-opt Simple.Plugin:Irrelevant_Option -package simple-plugin ./plugins01 |