3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

guix: ant-build-system: End "configure" phase with #t.

* guix/build/ant-build-system.scm (configure): End with #t.
This commit is contained in:
Danny Milosavljevic 2018-05-06 20:49:20 +02:00
parent bc65332a38
commit d6ac4d42ba
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -166,7 +166,8 @@ to the default GNU unpack strategy."
"/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)