From 9c4afa87c955147eef021a3ad6533c5fee4d4fc1 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 29 Jul 2007 11:53:47 +0000 Subject: [PATCH] bytestring is now in its own package --- compiler/Makefile | 4 ++-- libraries/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 25cedab..3192ace 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -411,8 +411,8 @@ endif # the interpreter is supported on this platform. ifeq "$(bootstrapped)" "YES" -SRC_HC_OPTS += -package hpc -PKG_DEPENDS += hpc +SRC_HC_OPTS += -package hpc -package bytestring +PKG_DEPENDS += hpc bytestring endif ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES" diff --git a/libraries/Makefile b/libraries/Makefile index ffb1a90..0d38613 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -35,7 +35,7 @@ default_target: all TOP=.. include $(TOP)/mk/boilerplate.mk -SUBDIRS = base old-locale old-time filepath directory process pretty \ +SUBDIRS = base bytestring old-locale old-time filepath directory process pretty \ hpc template-haskell readline Cabal random haskell98 ifeq "$(GhcLibsWithUnix)" "YES" -- 1.7.10.4