summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@scratchpost.org>2018-05-06 20:49:20 +0200
committerDanny Milosavljevic <dannym@scratchpost.org>2018-05-06 20:49:20 +0200
commitd6ac4d42ba6c7253388cf1c43615e70a7c236c12 (patch)
tree6bf65a28b15a7b25a562c400d4bc2872cd37ffcf /guix/build
parentbc65332a38c908cab86c51bd53ae25a5e40ec374 (diff)
downloadgnu-guix-d6ac4d42ba6c7253388cf1c43615e70a7c236c12.tar
gnu-guix-d6ac4d42ba6c7253388cf1c43615e70a7c236c12.tar.gz
guix: ant-build-system: End "configure" phase with #t.
* guix/build/ant-build-system.scm (configure): End with #t.
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/ant-build-system.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/ant-build-system.scm b/guix/build/ant-build-system.scm
index d28c2903ae..d081a2b313 100644
--- a/guix/build/ant-build-system.scm
+++ b/guix/build/ant-build-system.scm
@@ -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)