1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 13:40:36 +02:00

gnu: lua: Use invoke.

* gnu/packages/lua.scm (lua)[arguments]: Use invoke in the install phase.
This commit is contained in:
Mark H Weaver
2018-03-23 03:04:31 -04:00
parent c1fced68e2
commit ffa95cf3ba

View File

@@ -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