mhw pushed a commit to branch core-updates
in repository guix.
commit ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7
Author: Mark H Weaver <[email protected]>
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