guix: ant-build-system: End "configure" phase with #t.
* guix/build/ant-build-system.scm (configure): End with #t.
This commit is contained in:
parent
bc65332a38
commit
d6ac4d42ba
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,8 @@ (define* (configure #:key inputs outputs (jar-name #f)
|
|||
"/share/java")
|
||||
source-dir test-dir main-class test-include test-exclude))
|
||||
(setenv "JAVA_HOME" (assoc-ref inputs "jdk"))
|
||||
(setenv "CLASSPATH" (generate-classpath inputs)))
|
||||
(setenv "CLASSPATH" (generate-classpath inputs))
|
||||
#t)
|
||||
|
||||
(define* (build #:key (make-flags '()) (build-target "jar")
|
||||
#:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue