diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-12-13 13:04:09 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-12-13 15:02:12 +0000 |
commit | b9a7206393da57d5b3cd9ae876d254301d266dc0 (patch) | |
tree | b24db9604fa0dd4b9989985607b25a63a38dae2c /rts | |
parent | f25dc05ef44b6b653a1b8974289804971214dbff (diff) | |
download | haskell-b9a7206393da57d5b3cd9ae876d254301d266dc0.tar.gz |
$(rts_H_FILES) should contain .h files in subdirectories of rts/ too
Diffstat (limited to 'rts')
-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 e2e00c66e6..c5e0093723 100644 --- a/rts/ghc.mk +++ b/rts/ghc.mk @@ -62,7 +62,7 @@ rts/dist/build/sm/Evac_thr.c : rts/sm/Evac.c | $$(dir $$@)/. rts/dist/build/sm/Scav_thr.c : rts/sm/Scav.c | $$(dir $$@)/. cp $< $@ -rts_H_FILES := $(wildcard rts/*.h) +rts_H_FILES := $(wildcard rts/*.h rts/*/*.h) ifeq "$(USE_DTRACE)" "YES" DTRACEPROBES_H = rts/dist/build/RtsProbes.h |