From 6ed326b78c09f2c79908e94341fb826fd9469688 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 29 Aug 2006 12:32:28 +0000 Subject: [PATCH] Don't enable SMP if we are unregisterised --- mk/config.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/config.mk.in b/mk/config.mk.in index e5581cc..dc69ff2 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -259,7 +259,7 @@ HaveLibDL = @HaveLibDL@ ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc))) -ifeq "$(ArchSupportsSMP)" "YES" +ifeq "$(ArchSupportsSMP)$(GhcUnregisterised)" "YESNO" GhcWithSMP=YES else GhcWithSMP=NO -- 1.7.10.4