gnu: classpath-devel: Fix bootstrap phase.

* gnu/packages/java.scm (classpath-devel)[arguments]: Replace "bootstrap"
build phase.
This commit is contained in:
Ricardo Wurmus 2018-03-16 12:26:07 +01:00
parent d41ba524ed
commit 2a69f48e0f
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -694,6 +694,10 @@ (define-public classpath-devel
"--disable-gjdoc")
#:phases
(modify-phases %standard-phases
;; XXX The bootstrap phase executes autogen.sh, which fails after
;; complaining about the lack of gettext.
(replace 'bootstrap
(lambda _ (invoke "autoreconf" "-vif")))
(add-after 'unpack 'remove-unsupported-annotations
(lambda _
(substitute* (find-files "java" "\\.java$")