Skip to content
Snippets Groups Projects
Commit 2fd78f9f authored by sthibaul's avatar sthibaul Committed by Marge Bot
Browse files

Fix the platform string for GNU/Hurd

As commited in Cargo
https://github.com/haskell/cabal/pull/9434
there is confusion between "gnu" and "hurd". This got fixed in Cargo, we
need the converse in Hadrian.

Fixes #24180
parent 17ec3e97
No related branches found
No related tags found
No related merge requests found
......@@ -75,5 +75,6 @@ cabalOsString :: String -> String
cabalOsString "mingw32" = "windows"
cabalOsString "darwin" = "osx"
cabalOsString "solaris2" = "solaris"
cabalOsString "gnu" = "hurd"
cabalOsString other = other
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment