From 77192e834b81cc6622ce755fd7e515528d278dbc Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 26 Apr 2024 17:26:53 +0300 Subject: [PATCH] gnu: icedtea-8: Fix building. * gnu/packages/java.scm (icedtea-8)[arguments]: Replace 'build phase to not pass '-j' to make. Change-Id: Ifc5c99f33bb75bb52212aa32d0bbd10f4bce83a4 --- gnu/packages/java.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index b3b037ea439..b6d8aa32cbf 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -763,6 +763,10 @@ IcedTea build harness.") (delete 'patch-patches) (delete 'patch-bitrot) (delete 'use-classpath) + ;; Prevent passing -j (parallel-job-count) to make + (replace 'build + (lambda* (#:key (make-flags '()) #:allow-other-keys) + (apply invoke "make" make-flags))) ;; Prevent the keytool from recording the current time when ;; adding certificates at build time. (add-after 'unpack 'patch-keystore