summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/base.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index f378d9e659c..110b004579d 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -268,6 +268,11 @@ implementation offers several extensions over the standard utility.")
((not (target-64bit?))
'(#:make-flags (list "TESTSUITEFLAGS= -k '!tricky time stamps'")))
(else '()))
+ ;; XXX: 32-bit Hurd platforms don't support 64bit time_t
+ ,@(if (and (target-hurd?)
+ (not (target-64bit?)))
+ (list #:configure-flags ''("--disable-year2038"))
+ '())
#:phases (modify-phases %standard-phases
(add-before 'build 'set-shell-file-name
(lambda* (#:key inputs #:allow-other-keys)