summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
authorruki <[email protected]>2022-09-11 21:54:58 +0800
committerruki <[email protected]>2022-09-11 21:54:58 +0800
commit23dd02721252011d6305186bcb478e96e597841a (patch)
tree93f2cf8fe34ee8d333e44bdeeed4461b4cf80691 /xmake/plugins
parent43ca57ce4252e4c2bce03b04ce04bb2f1245b01a (diff)
improve package and remove i386 for macosx
Diffstat (limited to 'xmake/plugins')
-rw-r--r--xmake/plugins/macro/macros/package.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/macro/macros/package.lua b/xmake/plugins/macro/macros/package.lua
index c220cbe42..c04443ae2 100644
--- a/xmake/plugins/macro/macros/package.lua
+++ b/xmake/plugins/macro/macros/package.lua
@@ -63,9 +63,9 @@ function main(argv)
-- package it
if args.outputdir then
- os.exec("xmake p -o %s %s", args.outputdir, option.get("verbose") and "-v" or "")
+ os.exec("xmake p -f oldpkg -o %s %s", args.outputdir, option.get("verbose") and "-v" or "")
else
- os.exec("xmake p %s", option.get("verbose") and "-v" or "")
+ os.exec("xmake p -f oldpkg %s", option.get("verbose") and "-v" or "")
end
end