summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/plugins')
-rwxr-xr-xxmake/plugins/macro/macros/package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/macro/macros/package.lua b/xmake/plugins/macro/macros/package.lua
index 0fd4e498c..a6edaa5aa 100755
--- a/xmake/plugins/macro/macros/package.lua
+++ b/xmake/plugins/macro/macros/package.lua
@@ -104,7 +104,7 @@ function main(argv)
os.mkdir(format("%s/%s.pkg/lib/%s/%s/universal", outputdir, target:name(), mode, plat))
-- package all archs
- os.exec("xmake l lipo \"%s\"", lipoargs)
+ os.execv("xmake", {"l", "lipo", lipoargs})
end
end
end