diff options
| author | Arthur LAURENT <[email protected]> | 2022-07-13 11:12:34 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2022-07-13 11:12:34 +0200 |
| commit | df580cb9db9ea8ec9679a275109135844685af27 (patch) | |
| tree | f74af3c58006b0bca9639bc7c22581f7e8b97809 /xmake/rules/qt/deploy/android.lua | |
| parent | 8a7ac7b30eb72112e67350a491d4c3f045f3d86b (diff) | |
Fix user flags for *deployqt
Diffstat (limited to 'xmake/rules/qt/deploy/android.lua')
| -rw-r--r-- | xmake/rules/qt/deploy/android.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/qt/deploy/android.lua b/xmake/rules/qt/deploy/android.lua index 5e6a641d8..2e2946194 100644 --- a/xmake/rules/qt/deploy/android.lua +++ b/xmake/rules/qt/deploy/android.lua @@ -220,7 +220,7 @@ function main(target, opt) -- add user flags local user_flags = target:values("qt.deploy.flags") or {} if user_flags then - table.join(argv, user_flags) + argv = table.join(argv, user_flags) end os.vrunv(androiddeployqt, argv) |
