gnu: classpath-devel: Fix bootstrap phase.
* gnu/packages/java.scm (classpath-devel)[arguments]: Replace "bootstrap" build phase.
This commit is contained in:
parent
d41ba524ed
commit
2a69f48e0f
|
@ -694,6 +694,10 @@ the standard javac executable. The tool runs on JamVM instead of SableVM.")))
|
||||||
"--disable-gjdoc")
|
"--disable-gjdoc")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-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
|
(add-after 'unpack 'remove-unsupported-annotations
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* (find-files "java" "\\.java$")
|
(substitute* (find-files "java" "\\.java$")
|
||||||
|
|
Loading…
Reference in New Issue