diff options
author | Marcel van der Boom <marcel@van-der-boom.nl> | 2024-09-27 13:14:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-07 12:51:23 +0200 |
commit | 516c63ef8cd2f3e0b3b88cc4bc0b22918ffe22d5 (patch) | |
tree | e6a8b2045ab242da0eda31f7221e38eb0facd4fe | |
parent | db1a1dc0b2eec26c36516f97102125878c2ff163 (diff) | |
download | guix-516c63ef8cd2f3e0b3b88cc4bc0b22918ffe22d5.tar guix-516c63ef8cd2f3e0b3b88cc4bc0b22918ffe22d5.tar.gz |
gnu: lib2geom: Skip a test on ppc64le
* gnu/packages/graphics.scm (lib2geom)[arguments]: When building for
ppc64le-linux add a phase to skip a test known to fail upstream.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index f5e0ca7352..c12516383b 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -964,7 +964,8 @@ exception-handling library.") (("self-intersections-test") "")))))) ;; See https://gitlab.com/inkscape/lib2geom/-/issues/63 ((or (target-aarch64?) - (target-riscv64?)) + (target-riscv64?) + (target-ppc64le?)) #~((add-after 'unpack 'fix-aarch64-faulty-test (lambda _ (substitute* "tests/CMakeLists.txt" |