diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-10-25 14:57:11 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-10-25 14:57:11 +0100 |
commit | 6e28baa749836c65361111a8b2322695d4addeff (patch) | |
tree | cda9aac9238b463a53973984ba94623be5a8ad7d /mk | |
parent | 86e247968f6b29fd482f9991b0e3a6ec1cc2e265 (diff) | |
download | haskell-6e28baa749836c65361111a8b2322695d4addeff.tar.gz |
Make DefaultFastGhcLibWays be just "dyn" when we are dynamic by default
Diffstat (limited to 'mk')
-rw-r--r-- | mk/validate-settings.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk index 4baf02ab43..03f4e71060 100644 --- a/mk/validate-settings.mk +++ b/mk/validate-settings.mk @@ -29,7 +29,7 @@ GhcLibHcOpts += -O -dcore-lint # We define DefaultFastGhcLibWays in this style so that the value is # correct even if the user alters DYNAMIC_BY_DEFAULT -DefaultFastGhcLibWays = $(if $(filter $(DYNAMIC_BY_DEFAULT),YES),v dyn,v) +DefaultFastGhcLibWays = $(if $(filter $(DYNAMIC_BY_DEFAULT),YES),dyn,v) ifeq "$(ValidateSpeed)" "FAST" GhcLibWays = $(DefaultFastGhcLibWays) |