summaryrefslogtreecommitdiff
path: root/meta.lua
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-08-23 14:21:45 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-08-23 14:21:45 -0500
commit1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531 (patch)
treedeb83e1e2d9721c6d9de0785c3c3025fb0024cee /meta.lua
parentb765045914711334269ce9520f90ccd8fea122f1 (diff)
downloadlua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.tar.gz
lua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.tar.bz2
lua-packaging-1ff23d8a4c1935cc1c502ef2e3cce5fd9d920531.zip
Update produces system
Diffstat (limited to '')
-rw-r--r--meta.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta.lua b/meta.lua
index 6ea8450..695c56d 100644
--- a/meta.lua
+++ b/meta.lua
@@ -31,10 +31,10 @@ for version, link, name, optimization, rel, flag, _, image in cartesian(lua_vers
31 {"cicd", "image-" .. image}, 31 {"cicd", "image-" .. image},
32 }, 32 },
33 produces = { 33 produces = {
34 "lua.exe", 34 ["lua.exe"] = true,
35 "lua" .. version .. ".dll", 35 ["lua" .. version .. ".dll"] = true,
36 "liblua.a", 36 ["liblua.a"] = true,
37 "luac.exe", 37 ["luac.exe"] = true,
38 }, 38 },
39 env = { 39 env = {
40 CFLAGS = optimization .. " " .. flag, 40 CFLAGS = optimization .. " " .. flag,