aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/wix/windeployqt-to-wix.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/wix/windeployqt-to-wix.ps1')
-rw-r--r--packaging/wix/windeployqt-to-wix.ps17
1 files changed, 1 insertions, 6 deletions
diff --git a/packaging/wix/windeployqt-to-wix.ps1 b/packaging/wix/windeployqt-to-wix.ps1
index f8d5fd42fe..809ceacaf2 100644
--- a/packaging/wix/windeployqt-to-wix.ps1
+++ b/packaging/wix/windeployqt-to-wix.ps1
@@ -72,6 +72,7 @@ try {
$wdqtList = windeployqt `
--release `
--no-compiler-runtime `
+ --no-translations `
--list relative `
$Executable
@@ -95,12 +96,6 @@ try {
<ComponentGroup Id=`"CG.QtDependencies`">
"
foreach ($entry in $wdqtList) {
- $entryPath = Join-Path -Path $dllPath -ChildPath $entry
- if ($entry.EndsWith(".qm") -and -not (Test-Path $entryPath -PathType Leaf)) {
- # Windeployqt --list can print translation files that
- # don't exist (QTBUG-65974).
- continue
- }
$dir = Split-Path -Parent $entry
if ($dir) {
if ($dir -ne $currentDir) {