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-01 17:42:37 +0200 |
commit | 612fe170d4bb60e2c43d762c6fd4c59bac3eb04c (patch) | |
tree | 05d4bd72ce3afc9f46e9f6981affb0a510e535f1 | |
parent | 17ea664c17948e553d8b16ffa7571b6f144acf14 (diff) |
gnu: lib2geom: Skip a test on ppc64lewip-gsl-upgrade
* 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" |