gnu: ant-bootstrap: Bind OUTPUTS in build phase.

* gnu/packages/java.scm (ant-bootstrap)[arguments]: Bind OUTPUTS to remove
reference to global %OUTPUTS.
This commit is contained in:
Ricardo Wurmus 2021-12-18 17:25:28 +01:00
parent 993e26cbe1
commit 7bd34b0b19
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -359,7 +359,7 @@ (define ant-bootstrap
(setenv "JAVAC" (search-input-file inputs "/bin/jikes"))
(setenv "CLASSPATH" (search-input-file inputs "/lib/rt.jar"))))
(replace 'build
(lambda* (#:key inputs #:allow-other-keys)
(lambda* (#:key inputs outputs #:allow-other-keys)
;; Ant complains if this file doesn't exist.
(setenv "HOME" "/tmp")
(with-output-to-file "/tmp/.ant.properties"
@ -386,7 +386,7 @@ (define ant-bootstrap
(("depends=\"jars,test-jar\"") "depends=\"jars\""))
(invoke "bash" "bootstrap.sh"
(string-append "-Ddist.dir="
(assoc-ref %outputs "out")))))
(assoc-ref outputs "out")))))
(add-after 'build 'strip-jar-timestamps ;based on ant-build-system
(lambda* (#:key outputs #:allow-other-keys)
(define (repack-archive jar)