guix-commits
[Top][All Lists]
Advanced

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

12/36: gnu: xdelta: Use invoke.


From: Mark H. Weaver
Subject: 12/36: gnu: xdelta: Use invoke.
Date: Thu, 12 Apr 2018 04:09:19 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit 0a4d9eb770151616901736ef7a23291fde5f86d6
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 16 02:31:48 2018 -0400

    gnu: xdelta: Use invoke.
    
    * gnu/packages/compression.scm (xdelta)[arguments]: Use invoke.  Return a
    boolean from all phase procedures.
---
 gnu/packages/compression.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index b4494e5..a0d5099 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1010,9 +1010,9 @@ respectively, based on the reference implementation from 
Google.")
      `(#:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'enter-build-directory
-           (lambda _ (chdir "xdelta3")))
+           (lambda _ (chdir "xdelta3") #t))
          (add-after 'enter-build-directory 'autoconf
-           (lambda _ (zero? (system* "autoreconf" "-vfi")))))))
+           (lambda _ (invoke "autoreconf" "-vfi"))))))
     (home-page "http://xdelta.org";)
     (synopsis "Delta encoder for binary files")
     (description "xdelta encodes only the differences between two binary files



reply via email to

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