diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-10-02 13:46:12 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-10-02 14:57:45 -0400 |
commit | e9104d46eab0a2fbf7af9a299da3763bcf39f148 (patch) | |
tree | d2a30c0a4b08959dd4b8465464df4d3b91e11510 | |
parent | 8cab9bd5eeb9cdb1afa6be7682c861c8efee475a (diff) | |
download | haskell-e9104d46eab0a2fbf7af9a299da3763bcf39f148.tar.gz |
DynFlags: Fix absolute import path to generated header
Test Plan: Validate
Reviewers: austin, snowleopard
Reviewed By: snowleopard
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2559
GHC Trac Issues: #8040.
-rw-r--r-- | compiler/main/DynFlags.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index cc11d3d482..97a621123d 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -124,7 +124,7 @@ module DynFlags ( #endif dynamicGhc, -#include "../includes/dist-derivedconstants/header/GHCConstantsHaskellExports.hs" +#include "GHCConstantsHaskellExports.hs" bLOCK_SIZE_W, wORD_SIZE_IN_BITS, tAG_MASK, |