guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: axoloti-patcher: Use INVOKE.


From: guix-commits
Subject: 02/04: gnu: axoloti-patcher: Use INVOKE.
Date: Thu, 24 Jan 2019 17:11:06 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit c28bf42f2adce1a37bfbc4e18387910e476c166d
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Jan 24 23:07:10 2019 +0100

    gnu: axoloti-patcher: Use INVOKE.
    
    * gnu/packages/axoloti.scm (axoloti-patcher)[arguments]: Use INVOKE and
    unconditionally return #T from build phase.
---
 gnu/packages/axoloti.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/axoloti.scm b/gnu/packages/axoloti.scm
index b2f6757..6a76ad6 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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]