diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2024-04-26 17:26:53 +0300 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:01 +0200 |
| commit | 77192e834b81cc6622ce755fd7e515528d278dbc (patch) | |
| tree | 881bca9042a6f4cd9be22bca83bc4cf849e3a026 /gnu/packages/java.scm | |
| parent | 0bae9e17c681bec70424f921e004808b390fe892 (diff) | |
gnu: icedtea-8: Fix building.
* gnu/packages/java.scm (icedtea-8)[arguments]: Replace 'build phase to
not pass '-j' to make.
Change-Id: Ifc5c99f33bb75bb52212aa32d0bbd10f4bce83a4
Diffstat (limited to 'gnu/packages/java.scm')
| -rw-r--r-- | gnu/packages/java.scm | 4 |
1 files changed, 4 insertions, 0 deletions
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.") | |||
| 763 | (delete 'patch-patches) | 763 | (delete 'patch-patches) |
| 764 | (delete 'patch-bitrot) | 764 | (delete 'patch-bitrot) |
| 765 | (delete 'use-classpath) | 765 | (delete 'use-classpath) |
| 766 | ;; Prevent passing -j (parallel-job-count) to make | ||
| 767 | (replace 'build | ||
| 768 | (lambda* (#:key (make-flags '()) #:allow-other-keys) | ||
| 769 | (apply invoke "make" make-flags))) | ||
| 766 | ;; Prevent the keytool from recording the current time when | 770 | ;; Prevent the keytool from recording the current time when |
| 767 | ;; adding certificates at build time. | 771 | ;; adding certificates at build time. |
| 768 | (add-after 'unpack 'patch-keystore | 772 | (add-after 'unpack 'patch-keystore |
