nckx pushed a commit to branch master
in repository guix.
commit 5bad645159f34070c326e5e0f91b8ae7f4cfd269
Author: Tobias Geerinckx-Rice <[email protected]>
Date: Tue Jun 26 16:28:57 2018 +0200
gnu: java-jgit: Return #t from phases.
* gnu/packages/version-control.scm (java-jgit)[arguments]: Substitute
INVOKE for SYSTEM*. Return #t rather than undefined from phases.
---
gnu/packages/version-control.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index fa36f87..86d6afe 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1904,9 +1904,10 @@ unique algebra of patches called
@url{http://darcs.net/Theory,Patchtheory}.
(add-after 'build 'add-properties
(lambda* (#:key jar-name #:allow-other-keys)
(with-directory-excursion "src"
- (zero? (apply system* "jar" "-uf"
- (string-append "../build/jar/" jar-name)
- (find-files "." "\\.properties$")))))))))
+ (apply invoke "jar" "-uf"
+ (string-append "../build/jar/" jar-name)
+ (find-files "." "\\.properties$")))
+ #t)))))
(inputs
`(("java-classpathx-servletapi" ,java-classpathx-servletapi)
("java-javaewah" ,java-javaewah)