From e49e2fa28ad9e2166ab89818338ab6d7de974d18 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 3 Sep 2024 15:04:20 +0200 Subject: [PATCH] gnu: texlive-biber: Fix build on i686. * gnu/packages/tex.scm (texlive-biber)[arguments]: Delete failing test on an i686 system. Change-Id: I469f1562dddc39013c0271a2baef2add6516fe86 --- gnu/packages/tex.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cc91ec39cc..31c2c4cfd1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -71668,6 +71668,10 @@ documents as well as DVI output.") (add-after 'unpack-biber-source 'build-biber (lambda args (with-directory-excursion "build" + ;; The following tests fail on i686. + #$@(if (target-x86-32?) + '((delete-file "t/dateformats.t")) + '()) (for-each (lambda (phase) (apply (assoc-ref perl:%standard-phases phase) args)) '(configure build check install)))))