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

commit 71a02196268e1c2c55b8bd342fe34c10430dc2ed
Author: Mark H Weaver <[email protected]>
Date:   Fri Mar 23 03:31:54 2018 -0400

    gnu: pciutils: Use invoke.
    
    * gnu/packages/pciutils.scm (pciutils)[arguments]: Use invoke in the custom
    install phase.
---
 gnu/packages/pciutils.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/pciutils.scm b/gnu/packages/pciutils.scm
index e77aa3f..d972761 100644
--- a/gnu/packages/pciutils.scm
+++ b/gnu/packages/pciutils.scm
@@ -72,7 +72,7 @@
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              ;; Install the commands, library, and .pc files.
-             (zero? (system* "make" "install" "install-lib")))))
+             (invoke "make" "install" "install-lib"))))
 
        ;; Make sure programs have an RPATH so they can find libpciutils.so.
        #:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="

Reply via email to