Skip to content

Commit

Permalink
Don't depend on unbounded-delays on ppc64
Browse files Browse the repository at this point in the history
... which is a 64 bit architecture.
  • Loading branch information
Christian Boltz authored and Bodigrim committed Jun 30, 2024
1 parent b2d1a6e commit b3e1d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tasty.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ library
ansi-terminal >= 0.9 && < 1.2

-- No reason to depend on unbounded-delays on 64-bit architecture
if(!arch(x86_64) && !arch(aarch64) && !arch(s390x))
if(!arch(x86_64) && !arch(aarch64) && !arch(ppc64) && !arch(s390x))
build-depends:
unbounded-delays >= 0.1 && < 0.2

Expand Down

0 comments on commit b3e1d29

Please sign in to comment.