summaryrefslogtreecommitdiff
path: root/hadrian
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2023-03-28 16:35:21 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-03-29 16:17:21 -0400
commit41a572f656c04770366c29ef5554184cf685482f (patch)
tree1bc027546d4103750de2b0da3e77c89a5508c2df /hadrian
parentd246049c81b922f9beddc629988c4e3eda8d4115 (diff)
downloadhaskell-41a572f656c04770366c29ef5554184cf685482f.tar.gz
hadrian: Fix path to HpcParser.y
The source for this project has been moved into a src/ folder so we also need to update this path. Fixes #23187
Diffstat (limited to 'hadrian')
-rw-r--r--hadrian/src/Rules/SourceDist.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Rules/SourceDist.hs b/hadrian/src/Rules/SourceDist.hs
index ce8d05e6a6..374f94b0ad 100644
--- a/hadrian/src/Rules/SourceDist.hs
+++ b/hadrian/src/Rules/SourceDist.hs
@@ -184,7 +184,7 @@ prepareTree dest = do
, (stage0InTree , compiler, "GHC/Parser.y", "GHC/Parser.hs")
, (stage0InTree , compiler, "GHC/Parser/Lexer.x", "GHC/Parser/Lexer.hs")
, (stage0InTree , compiler, "GHC/Parser/HaddockLex.x", "GHC/Parser/HaddockLex.hs")
- , (stage0InTree , hpcBin, "HpcParser.y", "HpcParser.hs")
+ , (stage0InTree , hpcBin, "src/HpcParser.y", "src/HpcParser.hs")
, (stage0InTree , genprimopcode, "Parser.y", "Parser.hs")
, (stage0InTree , genprimopcode, "Lexer.x", "Lexer.hs")
]