summaryrefslogtreecommitdiff
path: root/gnu/packages/java.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-02-18 10:18:32 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-02-25 09:46:07 +0900
commita2c347c1fb0ca28a8485da30180404b0a32bc7f6 (patch)
tree3d0a0d0cf3d9619392389214282958efbf53282c /gnu/packages/java.scm
parent9888260728af11433bbcaa3bbf2938cd47068af9 (diff)
gnu: openjdk11: Double max-silent-time timeout property.
* gnu/packages/java.scm (openjdk11) [properties]: New field. Change-Id: I4370a4d8bc75c139334ef41778c17d391561e356
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r--gnu/packages/java.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index ddf141564f5..fce83f7cdac 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -1570,7 +1570,11 @@ new Date();"))))
(synopsis "Java development kit")
(description
"This package provides the Java development kit OpenJDK.")
- (license license:gpl2+)))
+ (license license:gpl2+)
+ (properties
+ ;; At least on a Blackbird powerpc64le machine, the build takes more than
+ ;; the default 3600s of silent timeout.
+ `((max-silent-time . ,(* 3600 2))))))
(define-syntax make-openjdk
;; Return an OpenJDK package at VERSION with checksum HASH, using BOOTSTRAP,