From: simonmar Date: Fri, 16 Sep 2005 10:36:53 +0000 (+0000) Subject: [project @ 2005-09-16 10:36:53 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~211 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=5fd81cfef7878e5b9f8b777e2d0858a24fb098f8;p=ghc-hetmet.git [project @ 2005-09-16 10:36:53 by simonmar] only set bootstrapped=YES if the version we're building with is exactly the *same* as the version being built, rather than a later version. --- diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 68348ef..b345b47 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -390,7 +390,7 @@ else ifneq "$(findstring $(stage), 2 3)" "" bootstrapped = YES else -bootstrapped = $(shell if (test $(GhcCanonVersion) -ge $(ProjectVersionInt) -a $(GhcPatchLevel) -ge $(ProjectPatchLevel)); then echo YES; else echo NO; fi) +bootstrapped = $(shell if (test $(GhcCanonVersion) -eq $(ProjectVersionInt) -a $(GhcPatchLevel) -eq $(ProjectPatchLevel)); then echo YES; else echo NO; fi) endif endif