diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-11-22 00:43:19 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-11-22 00:43:39 -0500 |
commit | 1399c8b481bd04848377b2f8a449e0bb09f0bb65 (patch) | |
tree | 18b474bacd1853c759672e6f8823cebeb52ab589 /ghc/hschooks.c | |
parent | 7e4b6110b43e1a9f3c41afbaae156b4dcf4a460a (diff) | |
download | haskell-1399c8b481bd04848377b2f8a449e0bb09f0bb65.tar.gz |
ghc/hschooks.c: Fix include path of Rts.h
We need to ensure that we don't include Rts.h from bootstrap compiler.
See #12796.
Test Plan: Validate
Reviewers: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2698
GHC Trac Issues: #12796
Diffstat (limited to 'ghc/hschooks.c')
-rw-r--r-- | ghc/hschooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/hschooks.c b/ghc/hschooks.c index 46a0944cd9..3a42801c11 100644 --- a/ghc/hschooks.c +++ b/ghc/hschooks.c @@ -5,7 +5,7 @@ in instead of the defaults. */ #include "../rts/PosixSource.h" -#include "Rts.h" +#include "../includes/Rts.h" #include "HsFFI.h" |