rekado pushed a commit to branch core-updates
in repository guix.
commit 2a69f48e0f86ec99575325e3b28b68c8ea220649
Author: Ricardo Wurmus <[email protected]>
Date: Fri Mar 16 12:26:07 2018 +0100
gnu: classpath-devel: Fix bootstrap phase.
* gnu/packages/java.scm (classpath-devel)[arguments]: Replace "bootstrap"
build phase.
---
gnu/packages/java.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index b4f64e2..30acbaf 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -694,6 +694,10 @@ the standard javac executable. The tool runs on JamVM
instead of SableVM.")))
"--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$")