mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-28 03:45:07 -06:00
gnu: findutils: Disable 64bit time_t on the 32bit Hurd.
* gnu/packages/base.scm (findutils): Add --disable-year2038 configure-flag for 32bit hurd. Change-Id: I724f9e2807830d4b028a385e5e7c1f0d2e47e707
This commit is contained in:
parent
6cebf0e1d5
commit
efb6047bda
1 changed files with 5 additions and 0 deletions
|
|
@ -417,6 +417,11 @@ interactive means to merge two files.")
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list
|
||||
;; XXX: 32-bit Hurd platforms don't support 64bit time_t
|
||||
,@(if (and (target-hurd?)
|
||||
(not (target-64bit?)))
|
||||
'("--disable-year2038")
|
||||
'())
|
||||
;; Tell 'updatedb' to write to /var.
|
||||
"--localstatedir=/var")
|
||||
#:phases (modify-phases %standard-phases
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue