From: simonmar Date: Tue, 22 May 2001 14:48:28 +0000 (+0000) Subject: [project @ 2001-05-22 14:48:28 by simonmar] X-Git-Tag: Approximately_9120_patches~1899 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=51724722de1d5a9513b1082d18909675910156ab;p=ghc-hetmet.git [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 *** --- 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