[Git][ghc/ghc][wip/davide/ghc-internal-def] Hadrian: fix ghc-internal .def file name
David Eichmann pushed to branch wip/davide/ghc-internal-def at Glasgow Haskell Compiler / GHC Commits: 677c9d7a by David Eichmann at 2026-06-15T14:08:18+01:00 Hadrian: fix ghc-internal .def file name - - - - - 1 changed file: - hadrian/src/Rules/Rts.hs Changes: ===================================== hadrian/src/Rules/Rts.hs ===================================== @@ -25,7 +25,7 @@ buildGhcInternalImportDef target = do buildGhcInternalImportLib :: FilePath -> Action () buildGhcInternalImportLib target = do - let input = dropExtensions target <.> "def" -- the .def file + let input = dropExtension (dropExtension target) <.> "def" -- the .def file output = target -- the .dll.a import lib need [input] runBuilder Dlltool ["-d", input, "-l", output] [input] [output] View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/677c9d7ab6ca073ef6ef8381478e35d7... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/677c9d7ab6ca073ef6ef8381478e35d7... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
David Eichmann (@DavidEichmann)