diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-07-07 14:25:44 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-07-25 00:45:08 -0400 |
commit | 459afeb592d5ff6d338184f5ef248758ecda57a4 (patch) | |
tree | dc667acef485c06485bc53a5b4bde3f4595d53b5 /libraries | |
parent | 7721b923d53fb9eb93f80bb93b4c3bd976c05b4c (diff) | |
download | haskell-459afeb592d5ff6d338184f5ef248758ecda57a4.tar.gz |
Fix build systems
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/ghc-boot/ghc-boot.cabal.in | 2 | ||||
-rw-r--r-- | libraries/ghc-boot/ghc.mk | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/libraries/ghc-boot/ghc-boot.cabal.in b/libraries/ghc-boot/ghc-boot.cabal.in index e320a5725f..ddefca51db 100644 --- a/libraries/ghc-boot/ghc-boot.cabal.in +++ b/libraries/ghc-boot/ghc-boot.cabal.in @@ -45,7 +45,6 @@ Library GHC.HandleEncoding GHC.Platform.ArchOS GHC.Platform.Host - GHC.Platform.Constants GHC.Settings.Utils GHC.UniqueSubdir GHC.Version @@ -54,7 +53,6 @@ Library -- autogen-modules: -- GHC.Version -- GHC.Platform.Host - -- GHC.Platform.Constants build-depends: base >= 4.7 && < 4.16, binary == 0.8.*, diff --git a/libraries/ghc-boot/ghc.mk b/libraries/ghc-boot/ghc.mk index d183ccc501..daa3e3fc55 100644 --- a/libraries/ghc-boot/ghc.mk +++ b/libraries/ghc-boot/ghc.mk @@ -40,7 +40,7 @@ libraries/ghc-boot/dist-install/build/GHC/Platform/Host.hs: mk/project.mk | $$(d $(call removeFiles,$@) @echo "module GHC.Platform.Host where" >> $@ @echo >> $@ - @echo 'import GHC.Platform' >> $@ + @echo 'import GHC.Platform.ArchOS' >> $@ @echo >> $@ @echo 'hostPlatformArch :: Arch' >> $@ @echo 'hostPlatformArch = $(HaskellHostArch)' >> $@ |