diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-24 23:07:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-24 23:07:10 +0100 |
commit | c28bf42f2adce1a37bfbc4e18387910e476c166d (patch) | |
tree | 0151b8fbc633f4e6309ee2f0fa07450b735214d5 /gnu/packages/axoloti.scm | |
parent | 1ae04a2acc814a45510e235e1968b8836c4ffb9b (diff) | |
download | guix-c28bf42f2adce1a37bfbc4e18387910e476c166d.tar guix-c28bf42f2adce1a37bfbc4e18387910e476c166d.tar.gz |
gnu: axoloti-patcher: Use INVOKE.
* gnu/packages/axoloti.scm (axoloti-patcher)[arguments]: Use INVOKE and
unconditionally return #T from build phase.
Diffstat (limited to 'gnu/packages/axoloti.scm')
-rw-r--r-- | gnu/packages/axoloti.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/axoloti.scm b/gnu/packages/axoloti.scm index b2f6757168..6a76ad6be7 100644 --- a/gnu/packages/axoloti.scm +++ b/gnu/packages/axoloti.scm @@ -284,14 +284,14 @@ runtime.") port))) ;; Build it! - (zero? (system* "ant" - (string-append "-Djavac.classpath=" classpath) - "-Dbuild.runtime=true" - "-Dbuild.time=01/01/1970 00:00:00" - "-Djavac.source=1.7" - "-Djavac.target=1.7" - (string-append "-Dtag.short.version=" - ,version)))))) + (invoke "ant" + (string-append "-Djavac.classpath=" classpath) + "-Dbuild.runtime=true" + "-Dbuild.time=01/01/1970 00:00:00" + "-Djavac.source=1.7" + "-Djavac.target=1.7" + (string-append "-Dtag.short.version=" + ,version))))) (replace 'install (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |