diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/base.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index bc30d73426..d58fe59b0b 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -134,6 +134,14 @@ command-line arguments, multiple languages, and so on.") (arguments `(#:configure-flags (list "--enable-perl-regexp") + + ;; XXX: On 32-bit Hurd platforms, 'time_t' is defined as a 32-bit + ;; integer in 'hurd_types.defs', so this Gnulib test always fails. + #:make-flags ,(if (and (not (%current-target-system)) + (string=? (%current-system) "i586-gnu")) + ''("XFAIL_TESTS=test-year2038") + ''()) + #:phases (modify-phases %standard-phases (add-after 'install 'fix-egrep-and-fgrep |