diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 03:05:28 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:48 -0400 |
commit | 12a1660280250cab04022404ad7974a6a4e131e1 (patch) | |
tree | 6cdbf3874abf92097de26b06fbd64da5f9fc1983 /gnu/packages/lua.scm | |
parent | ffa95cf3baf2c8a7c8ea0f24c04714b87f04dcb7 (diff) | |
download | guix-12a1660280250cab04022404ad7974a6a4e131e1.tar guix-12a1660280250cab04022404ad7974a6a4e131e1.tar.gz |
gnu: lua5.1-expat: Use invoke.
* gnu/packages/lua.scm (lua5.1-expat)[arguments]: Use invoke and remove
vestigial plumbing in the custom check phase.
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r-- | gnu/packages/lua.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 8aca970c58..02467e2d96 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -174,8 +174,8 @@ language.") (lambda _ (setenv "LUA_CPATH" "src/?.so;;") (setenv "LUA_PATH" "src/?.lua;;") - (and (zero? (system* "lua" "tests/test.lua")) - (zero? (system* "lua" "tests/test-lom.lua")))))))) + (invoke "lua" "tests/test.lua") + (invoke "lua" "tests/test-lom.lua")))))) (inputs `(("lua" ,lua-5.1) ("expat" ,expat))) |