diff options
-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 f45bcd6ff2..4e8121ae2c 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -370,6 +370,14 @@ differences.") (build-system gnu-build-system) (arguments (list + ;; 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 (if (system-hurd?) #~(modify-phases %standard-phases (add-after 'unpack 'skip-tests |