summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-07-29 21:51:41 +0000
committerIan Lynagh <igloo@earth.li>2007-07-29 21:51:41 +0000
commit935d87dd7264a03f642290caaae0ce237862fe12 (patch)
tree966dfd274f70eaffccf2cec8d7530e9c2ddaa58b
parent9c4afa87c955147eef021a3ad6533c5fee4d4fc1 (diff)
downloadhaskell-935d87dd7264a03f642290caaae0ce237862fe12.tar.gz
Tweak package build order
-rw-r--r--libraries/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/libraries/Makefile b/libraries/Makefile
index 0d38613536..2b054cd403 100644
--- a/libraries/Makefile
+++ b/libraries/Makefile
@@ -35,15 +35,14 @@ default_target: all
TOP=..
include $(TOP)/mk/boilerplate.mk
-SUBDIRS = base bytestring old-locale old-time filepath directory process pretty \
- hpc template-haskell readline Cabal random haskell98
-
+SUBDIRS = base bytestring old-locale old-time filepath directory
ifeq "$(GhcLibsWithUnix)" "YES"
SUBDIRS += unix
endif
ifeq "$(Windows)" "YES"
SUBDIRS += $(wildcard Win32)
endif
+SUBDIRS += process pretty hpc template-haskell readline Cabal random haskell98
# Set GhcBootLibs=YES from the command line to work with just the libraries
# needed to bootstrap GHC.