From 6d2d7884c6013259a3d38d7b3c9803f59b373e13 Mon Sep 17 00:00:00 2001 From: "simonmar@microsoft.com" Date: Fri, 15 Feb 2008 13:38:36 +0000 Subject: [PATCH] fix build with 6.8 --- utils/nofib-analyse/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/nofib-analyse/Makefile b/utils/nofib-analyse/Makefile index 875b956..55672d8 100644 --- a/utils/nofib-analyse/Makefile +++ b/utils/nofib-analyse/Makefile @@ -4,6 +4,10 @@ include $(TOP)/mk/boilerplate.mk SRC_HC_OPTS += -fglasgow-exts -cpp -Wall HS_PROG = nofib-analyse +ifeq "$(ghc_ge_607)" "YES" +SRC_HC_OPTS += -package containers +endif + ifeq "$(ghc_ge_605)" "YES" SRC_HC_OPTS += -package regex-compat -package html endif -- 1.7.10.4