From 5fd81cfef7878e5b9f8b777e2d0858a24fb098f8 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 16 Sep 2005 10:36:53 +0000 Subject: [PATCH] [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. --- ghc/compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4