~ruther/guix-local

efb6047bdace94c084e4de32c653d91b8239d618 — Yelninei 1 year, 1 month ago 6cebf0e
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
1 files changed, 5 insertions(+), 0 deletions(-)

M gnu/packages/base.scm
M gnu/packages/base.scm => gnu/packages/base.scm +5 -0
@@ 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