From 4eebb73295a8ffdaefcfb7940254ad9c18e4e5d4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 19 Feb 2023 12:40:39 +0200 Subject: [PATCH] gnu: coreutils: Disable 64-bit time_t on 32-bit systems. Not all software is ready for 64-bit time in Guix. * gnu/packages/base.scm (coreutils)[arguments]: When building for a 32-bit system add a configure-flag to not use 64-bit time_t. --- gnu/packages/base.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index b9fb09272d..558abf8492 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -416,6 +416,10 @@ (define-public coreutils " test-renameatu" " test-utimensat"))) '()) + ,@(if (not (target-64bit?)) + ;; Not all software is ready for 64bit time_t. + '(#:configure-flags (list "--disable-year2038")) + '()) #:phases (modify-phases %standard-phases (add-before 'build 'patch-shell-references (lambda _