gnu: icedtea-8: Fix building on powerpc-linux.

* gnu/packages/java.scm (icedtea-8)[arguments]: When building for
powerpc-linux add a configure-flag to skip the java flight recorder.

Change-Id: I3b9e137c82766507c46ba7a54dff64c3c50c3685
This commit is contained in:
Efraim Flashner 2023-11-09 08:00:59 +02:00 committed by Ludovic Courtès
parent 8fbae8edf9
commit 71aef8cbcd
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -744,6 +744,10 @@ (define-public icedtea-8
"--enable-nss"
,(string-append "--with-parallel-jobs="
(number->string (parallel-job-count)))
;; Java Flight Recorder isn't supported on some architectures.
,@(if ,(target-ppc32?)
`("--enable-jfr=no")
'())
"--disable-downloading"
"--disable-system-pcsc"
"--disable-system-sctp"