summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2023-03-28 16:35:21 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2023-03-28 16:41:21 +0100
commit31b3dd996a5df95f759bd879dfd9362c3f323ef2 (patch)
tree04767128cba51ba13e4678a76f3cb1b5f97e00a3
parente1fb56b24e2fe45a6f628f651bfc12b2b9743378 (diff)
downloadhaskell-wip/23187.tar.gz
hadrian: Fix path to HpcParser.ywip/23187
The source for this project has been moved into a src/ folder so we also need to update this path. Fixes #23187
-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")
]