diff options
author | Ian Lynagh <igloo@earth.li> | 2010-01-08 20:20:40 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-01-08 20:20:40 +0000 |
commit | 092875293c22f8cee219196efcae6cd78ca244f4 (patch) | |
tree | 5b3eca62ec3e6ebae2ee890beae5c02c1c2218d1 /testsuite/mk | |
parent | eb38dc666b0740afd8a3fcd2c017dd0db0cc46e5 (diff) | |
download | haskell-092875293c22f8cee219196efcae6cd78ca244f4.tar.gz |
Always define IN_TREE_COMPILER in mk/boilerplate.mk
There was one path in which it was not being set.
Diffstat (limited to 'testsuite/mk')
-rw-r--r-- | testsuite/mk/boilerplate.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk index d17c0b1e41..ac2376ca2d 100644 --- a/testsuite/mk/boilerplate.mk +++ b/testsuite/mk/boilerplate.mk @@ -76,6 +76,8 @@ IN_TREE_COMPILER = NO TEST_HC := $(shell which ghc) endif +else +IN_TREE_COMPILER = NO endif # We can't use $(dir ...) here as TEST_HC might be in a path |