diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-12-18 20:21:19 +1100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-12-18 20:56:57 +1100 |
commit | ba80fc6ac51fe46cc51c77c5f6d2a23af335c180 (patch) | |
tree | ee66910ce98bad04060316ac0bc691f745c30a71 | |
parent | 77b7f24543fb23d79d58b51213577c85cf394d9d (diff) | |
download | haskell-ba80fc6ac51fe46cc51c77c5f6d2a23af335c180.tar.gz |
Fix PowerPC build
Summary:
Replace incorrect `ppc_HOST_ARCH` with `powerpc_HOST_ARCH`.
Test Plan: Build on PowerPC
Reviewers: hvr, austin, bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1651
-rw-r--r-- | libraries/ghci/GHCi/InfoTable.hsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/ghci/GHCi/InfoTable.hsc b/libraries/ghci/GHCi/InfoTable.hsc index 1a1116f06a..c32f3a44ab 100644 --- a/libraries/ghci/GHCi/InfoTable.hsc +++ b/libraries/ghci/GHCi/InfoTable.hsc @@ -63,7 +63,7 @@ platform :: Arch platform = #if defined(sparc_HOST_ARCH) ArchSparc -#elif defined(ppc_HOST_ARCH) +#elif defined(powerpc_HOST_ARCH) ArchPPC #elif defined(x86_HOST_ARCH) ArchX86 |