Skip to content

Commit

Permalink
Don't depend on unbounded-delays on s390x
Browse files Browse the repository at this point in the history
... which is a 64 bit architecture (big endian, but that hopefully
doesn't matter).
  • Loading branch information
Christian Boltz authored and Bodigrim committed Jun 23, 2024
1 parent 298f69b commit b2d1a6e
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))
if(!arch(x86_64) && !arch(aarch64) && !arch(s390x))
build-depends:
unbounded-delays >= 0.1 && < 0.2

Expand Down

0 comments on commit b2d1a6e

Please sign in to comment.