guix-commits
[Top][All Lists]
Advanced

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

37/66: gnu: lua: Use invoke.


From: Mark H. Weaver
Subject: 37/66: gnu: lua: Use invoke.
Date: Fri, 23 Mar 2018 04:46:45 -0400 (EDT)

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

commit ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 23 03:04:31 2018 -0400

    gnu: lua: Use invoke.
    
    * gnu/packages/lua.scm (lua)[arguments]: Use invoke in the install phase.
---
 gnu/packages/lua.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 69180ab..8aca970 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -73,10 +73,10 @@
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
-               (zero? (system* "make" "install"
-                               (string-append "INSTALL_TOP=" out)
-                               (string-append "INSTALL_MAN=" out
-                                              "/share/man/man1")))))))))
+               (invoke "make" "install"
+                       (string-append "INSTALL_TOP=" out)
+                       (string-append "INSTALL_MAN=" out
+                                      "/share/man/man1"))))))))
     (home-page "https://www.lua.org/";)
     (synopsis "Embeddable scripting language")
     (description



reply via email to

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