diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-09-03 15:04:20 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-09-03 15:07:03 +0200 |
commit | e49e2fa28ad9e2166ab89818338ab6d7de974d18 (patch) | |
tree | 8d6dec86f84698b6bcd25d53dbe6685ff55b2d59 | |
parent | a56affbdd8b44aa68f504563d8a552398a3ca937 (diff) | |
download | guix-e49e2fa28ad9e2166ab89818338ab6d7de974d18.tar.gz guix-e49e2fa28ad9e2166ab89818338ab6d7de974d18.zip |
gnu: texlive-biber: Fix build on i686.
* gnu/packages/tex.scm (texlive-biber)[arguments]: Delete failing test on an
i686 system.
Change-Id: I469f1562dddc39013c0271a2baef2add6516fe86
-rw-r--r-- | gnu/packages/tex.scm | 4 |
1 files changed, 4 insertions, 0 deletions
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))))) |