From 51724722de1d5a9513b1082d18909675910156ab Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 22 May 2001 14:48:28 +0000 Subject: [PATCH] [project @ 2001-05-22 14:48:28 by simonmar] Need to make ghc/utils in the second stage before we clean in ghc/lib/std, because hsc2hs is needed to boot ghc/lib/std, but the libraries are needed to build hsc2hs itself. *** MERGE *** --- distrib/hc-build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/distrib/hc-build b/distrib/hc-build index 3f1824a..3381af2 100644 --- a/distrib/hc-build +++ b/distrib/hc-build @@ -45,9 +45,12 @@ $MAKE -C ghc all echo "*** Building libraries..." ./configure +# make ghc/utils while we still have libraries in ghc/lib +$MAKE -C ghc/utils clean boot +$MAKE -C ghc/utils all + +# now, clean and build the libraries $MAKE -C ghc/lib clean boot $MAKE -C ghc/lib all $MAKE -C hslibs clean boot $MAKE -C hslibs all -$MAKE -C ghc/utils clean boot -$MAKE -C ghc/utils all -- 1.7.10.4