diff options
| author | Yelninei <yelninei@tutamail.com> | 2025-05-11 12:25:04 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:33 +0200 |
| commit | efb6047bdace94c084e4de32c653d91b8239d618 (patch) | |
| tree | 88826632ab897604a574461d051abcaffe001d6a | |
| parent | 6cebf0e1d5e13ce6010aace03a3d1d4a1071d49a (diff) | |
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
| -rw-r--r-- | gnu/packages/base.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index f4bd25177a1..f378d9e659c 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -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 |
