diff options
| author | ruki <[email protected]> | 2026-03-23 11:52:11 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-23 11:52:11 +0800 |
| commit | a1cc1f603aafbc9e3fdb89cf5938725c723d9cd7 (patch) | |
| tree | 518151c723fcd73ba26eba831b4d9b95d6abfd4f | |
| parent | 472a60eac20f156559acb8c27bb9481a8fd84518 (diff) | |
| parent | b7aff0c4a829c7d8f4de155151e78d08561a6b46 (diff) | |
Merge pull request #7417 from choyy/fix
fix xpack installdir
| -rw-r--r-- | xmake/rules/qt/installcmd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/qt/installcmd.lua b/xmake/rules/qt/installcmd.lua index 563e4b9c6..389ffd9c4 100644 --- a/xmake/rules/qt/installcmd.lua +++ b/xmake/rules/qt/installcmd.lua @@ -75,7 +75,7 @@ function main(target, batchcmds, opt) windeployqt.run_deploy(target, deploydir, installfiles) -- copy all deployed files and directories from deploydir to root install directory via batchcmds - local installdir = package:installdir() + batchcmds:mkdir(installdir) batchcmds:cp(path.join(deploydir, "*"), installdir, {rootdir = deploydir}) -- install other shared libraries (e.g. from packages) |
