From b0195f43ab032e5f08011ac8207e416f0a2911da Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 29 Aug 2007 11:35:00 +0000 Subject: [PATCH] fix compiling GHC 6.7+ with itself - compat needs -package containers now --- compat/compat.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/compat/compat.mk b/compat/compat.mk index 4162a6d..9730bdf 100644 --- a/compat/compat.mk +++ b/compat/compat.mk @@ -22,6 +22,7 @@ endif ifeq "$(ghc_ge_607)" "YES" SRC_HC_OPTS += -package directory SRC_HC_OPTS += -package pretty +SRC_HC_OPTS += -package containers endif ifeq "$(ghc_ge_603)" "NO" -- 1.7.10.4