diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-05-21 00:07:52 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-24 15:22:17 -0400 |
commit | b420fb2474650e6dfbd66afd199f28492f900f75 (patch) | |
tree | beab70914b25e854c70bf6b4db8497b7771f1fae /hadrian | |
parent | 15ccca16e2ecdde0a4e646c6d7515e00a7f364d3 (diff) | |
download | haskell-b420fb2474650e6dfbd66afd199f28492f900f75.tar.gz |
Hadrian: fix hp2ps error during cross-compilation
Fixed by @alp (see https://gitlab.haskell.org/ghc/ghc/issues/16051#note_274265)
Diffstat (limited to 'hadrian')
-rw-r--r-- | hadrian/src/Settings/Default.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hadrian/src/Settings/Default.hs b/hadrian/src/Settings/Default.hs index c665a8e144..5c6fb7254d 100644 --- a/hadrian/src/Settings/Default.hs +++ b/hadrian/src/Settings/Default.hs @@ -81,6 +81,7 @@ stage0Packages = do ++ [ terminfo | not windowsHost, not cross ] ++ [ timeout | windowsHost ] ++ [ touchy | windowsHost ] + ++ [ hp2ps | cross ] -- | Packages built in 'Stage1' by default. You can change this in "UserSettings". stage1Packages :: Action [Package] |