FIX unregisterised build
authorSimon Marlow <simonmar@microsoft.com>
Thu, 31 May 2007 13:28:42 +0000 (13:28 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Thu, 31 May 2007 13:28:42 +0000 (13:28 +0000)
Can't check $(GhcUnregisterised) eagerly, because it might not have
been set yet (it's set in build.mk).

mk/config.mk.in

index ae7b743..83c188b 100644 (file)
@@ -350,9 +350,9 @@ GhcRTSWays += debug
 endif
 
 # Want the threaded versions unless we're unregisterised
-ifeq "$(GhcUnregisterised)" "NO"
-GhcRTSWays += thr thr_p thr_debug
-endif
+# Defer the check until later by using $(if..), because GhcUnregisterised might
+# be set in build.mk, which hasn't been read yet.
+GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_p thr_debug,)
 
 # Option flags to pass to GHC when it's compiling modules in
 # fptools/libraries.  Typically these are things like -O or