guix-commits
[Top][All Lists]
Advanced

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

20/30: gnu: zip: Use invoke instead of system*.


From: Mark H. Weaver
Subject: 20/30: gnu: zip: Use invoke instead of system*.
Date: Fri, 16 Mar 2018 05:03:38 -0400 (EDT)

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

commit b0559d241b89344d7fef5313bdc1e8ca0869111b
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 16 02:41:13 2018 -0400

    gnu: zip: Use invoke instead of system*.
    
    * gnu/packages/compression.scm (zip)[arguments]: Use invoke.  Remove 
vestigial
      '#:modules' argument.
---
 gnu/packages/compression.scm | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 766aeb4..ea88fb4 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1706,14 +1706,11 @@ the actual decompression, the other input and output.")
                       (list "-f" "unix/Makefile"
                             (string-append "prefix=" out)
                             (string-append "MANDIR=" out "/share/man/man1")))
-       #:modules ((guix build gnu-build-system)
-                  (guix build utils)
-                  (srfi srfi-1))
        #:phases
        (modify-phases %standard-phases
          (replace 'build
            (lambda* (#:key (make-flags '()) #:allow-other-keys)
-             (zero? (apply system* "make" "generic_gcc" make-flags))))
+             (apply invoke "make" "generic_gcc" make-flags)))
          (delete 'configure))))
     (home-page "http://www.info-zip.org/Zip.html";)
     (synopsis "Compression and file packing utility")



reply via email to

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