gnu: texlive-biber: Fix build on i686.

* gnu/packages/tex.scm (texlive-biber)[arguments]: Delete failing test on an
i686 system.

Change-Id: I469f1562dddc39013c0271a2baef2add6516fe86
This commit is contained in:
Nicolas Goaziou 2024-09-03 15:04:20 +02:00
parent a56affbdd8
commit e49e2fa28a
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -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)))))