diff options
author | Andreas Enge <andreas@enge.fr> | 2023-08-17 14:05:51 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-08-17 16:19:05 +0200 |
commit | 4385fbcde5791a5005178a70390ad671781a01f1 (patch) | |
tree | 4b67ec3df3c560196b3ea4bccdce22c513efd539 /gnu/packages/texlive.scm | |
parent | 4b6a82517ed7f31d20f7ef6d4b5a90923872c0cf (diff) |
gnu: texlive: Drop special handling of mips64.
The architecture is effectively abandoned and cannot be tested any more.
* gnu/packages/texlive.scm (texlivebin)[arguments]: Remove check for mips64
when enabling tests.
Diffstat (limited to 'gnu/packages/texlive.scm')
-rw-r--r-- | gnu/packages/texlive.scm | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm index 535bda12a6f..cb9c186608e 100644 --- a/gnu/packages/texlive.scm +++ b/gnu/packages/texlive.scm @@ -186,13 +186,6 @@ "--disable-mfluajit") '())) - ;; Disable tests on some architectures to cope with a failure of - ;; luajiterr.test. - ;; XXX FIXME fix luajit properly on these architectures. - #:tests? ,(let ((s (or (%current-target-system) - (%current-system)))) - (not (string-prefix? "mips64" s))) - #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-psutils-test |