mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: icedtea-8: Fix building.
* gnu/packages/java.scm (icedtea-8)[arguments]: Replace 'build phase to not pass '-j' to make. Change-Id: Ifc5c99f33bb75bb52212aa32d0bbd10f4bce83a4
This commit is contained in:
parent
0bae9e17c6
commit
77192e834b
1 changed files with 4 additions and 0 deletions
|
@ -763,6 +763,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
|
||||
|
|
Loading…
Reference in a new issue