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
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -73,10 +73,10 @@ (define-public lua
(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