make the GhcThreaded setting lazy, because GhcUnregisterised might not be set yet
authorSimon Marlow <simonmar@microsoft.com>
Tue, 4 Sep 2007 10:17:29 +0000 (10:17 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Tue, 4 Sep 2007 10:17:29 +0000 (10:17 +0000)
mk/config.mk.in

index 80c52f2..c716ab0 100644 (file)
@@ -357,11 +357,7 @@ endif
 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_p thr_debug,)
 
 # We can only build GHCi threaded if we have a threaded RTS:
-ifneq "$(findstring thr, $(GhcRTSWays))" ""
-GhcThreaded=YES
-else
-GhcThreaded=NO
-endif
+GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
 
 # Option flags to pass to GHC when it's compiling modules in
 # fptools/libraries.  Typically these are things like -O or