diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-05-10 21:53:22 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-05-10 21:53:22 +0100 |
commit | 3d51be452cdff49aecee762c685af52ccb4ce74a (patch) | |
tree | 2029352788f9f10dac0ea6114a03a9904dad48f1 /rts/ghc.mk | |
parent | 8241cdd41fd22fbd9668432289828c4c04e23ba7 (diff) | |
download | haskell-3d51be452cdff49aecee762c685af52ccb4ce74a.tar.gz |
Make sure the RTS is built, even when no programs are being built with stage1
Part of #7841
Diffstat (limited to 'rts/ghc.mk')
-rw-r--r-- | rts/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk index 85f72b4a1d..30f6c0810c 100644 --- a/rts/ghc.mk +++ b/rts/ghc.mk @@ -24,7 +24,7 @@ rts_WAYS = $(GhcLibWays) $(filter-out $(GhcLibWays),$(GhcRTSWays)) rts_dist_WAYS = $(rts_WAYS) ALL_RTS_LIBS = $(foreach way,$(rts_WAYS),rts/dist/build/libHSrts$($(way)_libsuf)) -all_rts : $(ALL_RTS_LIBS) +$(eval $(call all-target,rts,$(ALL_RTS_LIBS))) # ----------------------------------------------------------------------------- # Defining the sources |