diff options
author | Ian Lynagh <igloo@earth.li> | 2010-09-18 14:59:04 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-09-18 14:59:04 +0000 |
commit | 896135d0231f798f264548f5935223d142e718a7 (patch) | |
tree | 30e0e0c28a02e1750da8242f43e795056a58eb60 /utils/mkUserGuidePart | |
parent | 97254d02c5460c41935e01765bdf52a07431da04 (diff) | |
download | haskell-896135d0231f798f264548f5935223d142e718a7.tar.gz |
Fix mkUserGuidePart deps
We need to directly depend on the stage1 libs. The stage1 compiler lib
doesn't depend on them.
Diffstat (limited to 'utils/mkUserGuidePart')
-rw-r--r-- | utils/mkUserGuidePart/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mkUserGuidePart/ghc.mk b/utils/mkUserGuidePart/ghc.mk index ef91767183..2c31cf65ff 100644 --- a/utils/mkUserGuidePart/ghc.mk +++ b/utils/mkUserGuidePart/ghc.mk @@ -14,6 +14,6 @@ utils/mkUserGuidePart_dist_MODULES = Main utils/mkUserGuidePart_dist_PROG = mkUserGuidePart utils/mkUserGuidePart_HC_OPTS = -package ghc -utils/mkUserGuidePart/dist/build/Main.o: $(compiler_stage2_v_LIB) +utils/mkUserGuidePart/dist/build/Main.o: $(ALL_STAGE1_LIBS) $(compiler_stage2_v_LIB) $(eval $(call build-prog,utils/mkUserGuidePart,dist,1)) |