diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 03:04:31 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:46 -0400 |
commit | ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7 (patch) | |
tree | 76fc4dad8cea4bb4cb922f05e1f51e988944dfe2 /gnu | |
parent | c1fced68e29d8b563e363713263e2913a880c19c (diff) | |
download | patches-ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7.tar patches-ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7.tar.gz |
gnu: lua: Use invoke.
* gnu/packages/lua.scm (lua)[arguments]: Use invoke in the install phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lua.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 69180abeac..8aca970c58 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 |