mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: diffutils: Skip Gnulib’s ‘test-year2038’ on i586-gnu.
This is a followup to 391ce2ea75
.
* gnu/packages/base.scm (diffutils)[arguments]: Add #:make-flags.
Change-Id: Ia760cf9a86a2ae60206e42498a07517552d0c9f2
This commit is contained in:
parent
8f584d2bdb
commit
eb4d26ce8e
1 changed files with 8 additions and 0 deletions
|
@ -370,6 +370,14 @@ (define-public diffutils
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue