diff options
| author | ruki <[email protected]> | 2016-06-03 10:25:33 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-06-03 10:25:33 +0800 |
| commit | 122683f02a9d0168f3c68b730f42d657c5a3a8ff (patch) | |
| tree | 5b6bc1929624c7eaee8ea6d7297b3a1dcee49009 /xmake/plugins | |
| parent | e3e2def67c94826326a150859f45a6898fdfc405 (diff) | |
fix option parser bug
Diffstat (limited to 'xmake/plugins')
| -rwxr-xr-x | xmake/plugins/macro/macros/package.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/macro/macros/package.lua b/xmake/plugins/macro/macros/package.lua index 922a52b1f..446fe595f 100755 --- a/xmake/plugins/macro/macros/package.lua +++ b/xmake/plugins/macro/macros/package.lua @@ -87,7 +87,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.exec("xmake l lipo \"%s\"", lipoargs) end end end |
