From 3a02d86d575ae97bf78f4fa7cf4bd3825c0045db Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 26 Apr 2024 17:26:53 +0300 Subject: 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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index c27962aa50..cb15350593 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2017, 2019, 2021 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2019 Gábor Boskovits ;;; Copyright © 2018 Chris Marusich -;;; Copyright © 2018-2023 Efraim Flashner +;;; Copyright © 2018-2024 Efraim Flashner ;;; Copyright © 2019, 2020, 2021 Björn Höfling ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2020 Raghav Gururajan @@ -762,6 +762,10 @@ (define-public icedtea-8 (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 -- cgit v1.2.3