diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-08-31 10:18:13 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-08-31 10:18:13 +0000 |
commit | 57e4541e9922a49b01aee93a7468526e21cd6bf6 (patch) | |
tree | 505a79fe6737eb750bd0fe1ffc6c3cb641f7114f | |
parent | afdbaf48894b74eee5b6cc5c17c477d9e517f389 (diff) | |
download | haskell-57e4541e9922a49b01aee93a7468526e21cd6bf6.tar.gz |
add missing ghc_ge_605
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index da16624adb..e5581cc6af 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -787,6 +787,7 @@ ghc_ge_504 = YES ghc_ge_601 = YES ghc_ge_602 = YES ghc_ge_603 = YES +ghc_ge_605 = YES else # not UseStage1 or BootingFromHc @@ -802,6 +803,7 @@ ghc_ge_504 = $(shell if (test $(GhcCanonVersion) -ge 504); then echo YES; else e ghc_ge_601 = $(shell if (test $(GhcCanonVersion) -ge 601); then echo YES; else echo NO; fi) ghc_ge_602 = $(shell if (test $(GhcCanonVersion) -ge 602); then echo YES; else echo NO; fi) ghc_ge_603 = $(shell if (test $(GhcCanonVersion) -ge 603); then echo YES; else echo NO; fi) +ghc_ge_605 = $(shell if (test $(GhcCanonVersion) -ge 605); then echo YES; else echo NO; fi) endif # Canonicalised ghc version number, used for easy (integer) version |