From 38e89650554d7851233792ad2d238c2282a628f0 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 2 Sep 2003 10:26:53 +0000 Subject: [PATCH] [project @ 2003-09-02 10:26:53 by simonmar] Wibbles to the touching of files to avoid unecessary recompilation when doing 'make install' in a tree after bootstrapping. --- distrib/hc-build | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/distrib/hc-build b/distrib/hc-build index f64345f..e6a132c 100644 --- a/distrib/hc-build +++ b/distrib/hc-build @@ -72,11 +72,6 @@ PRIMOP_BITS="primop-data-decl.hs-incl \ primop-usage.hs-incl \ primop-primop-info.hs-incl" -# The reconfigure step updates a few files, which can lead to -# unnecessary recompilations. Touch a bunch of things here to avoid -# having to recompile stuff that we've already built. -(cd ghc/compiler; touch $PRIMOP_BITS parser/hschooks.o prelude/PrimOp.o main/Config.hs main/Config.o ghc-*) - # Remove the old libraries. Don't use make clean, because we don't # want to delete the .hs files generated from the .hsc files, because # we don't have hsc2hs built yet. @@ -95,7 +90,9 @@ $MAKE -C ghc/utils clean && $MAKE -C ghc/utils boot all # Now we can build hslibs (hsc2hs is required, so must be after ghc/utils) $MAKE -C hslibs boot all -# Avoid relinking the compiler during 'make install': -(cd ghc/compiler; touch parser/hschooks.o ghc-*) +# The reconfigure step updates a few files, which can lead to +# unnecessary recompilations. Touch a bunch of things here to avoid +# having to recompile stuff that we've already built. +(cd ghc/compiler; touch $PRIMOP_BITS parser/hschooks.o prelude/PrimOp.o main/Config.hs main/Config.o ghc-*) # At this point, the tree should be safe to do 'make install' in. -- 1.7.10.4