From 0cf317f36f7582cb0540c74910020c9d5f4aa14f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 29 Sep 2009 13:11:20 +0200 Subject: s3: Remove the lua interpreter again This was meant to support async winbind. But as the hairy parts of async winbind (getgrent) are done without it, it can go again. --- source3/lua-5.1.4/test/luac.lua | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 source3/lua-5.1.4/test/luac.lua (limited to 'source3/lua-5.1.4/test/luac.lua') diff --git a/source3/lua-5.1.4/test/luac.lua b/source3/lua-5.1.4/test/luac.lua deleted file mode 100644 index 96a0a97ce7..0000000000 --- a/source3/lua-5.1.4/test/luac.lua +++ /dev/null @@ -1,7 +0,0 @@ --- bare-bones luac in Lua --- usage: lua luac.lua file.lua - -assert(arg[1]~=nil and arg[2]==nil,"usage: lua luac.lua file.lua") -f=assert(io.open("luac.out","wb")) -assert(f:write(string.dump(assert(loadfile(arg[1]))))) -assert(f:close()) -- cgit