diff options
author | Ian Lynagh <igloo@earth.li> | 2010-09-04 14:42:34 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-09-04 14:42:34 +0000 |
commit | 6cc7b5187ce33b318ac4ded4e2820a9ef487f42a (patch) | |
tree | a565dc133b1265c2c336972f7f5332aac58cbe46 /mk | |
parent | 33653031263aa6d5ba4d481c8bb0d8eb1303f4d1 (diff) | |
download | haskell-6cc7b5187ce33b318ac4ded4e2820a9ef487f42a.tar.gz |
Tidy up the ArchHasAdjustorSupport definition
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index cb8d41ff4d..c3c421a2ce 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -178,7 +178,7 @@ endif # Whether to use libffi for adjustors (foreign import "wrapper") or # not. If we have built-in support (rts/Adjustor.c) then we use that, # otherwise we fall back on libffi, which is slightly slower. -ArchHasAdjustorSupport=$(strip $(if $(findstring $(HostArch_CPP),i386 x86_64,),YES,NO)) +ArchHasAdjustorSupport = $(if $(findstring $(HostArch_CPP),i386 x86_64),YES,NO) ifeq "$(ArchHasAdjustorSupport)" "YES" UseLibFFIForAdjustors=NO else |