Fix path to lprodump

This commit is contained in:
Jan Grulich 2022-05-25 13:42:10 +02:00
parent 4bf079a32d
commit bef3ec51b2
2 changed files with 4 additions and 13 deletions

View File

@ -11,7 +11,7 @@
Summary: Qt6 - QtTool components
Name: qt6-qttools
Version: 6.3.0
Release: 2%{?dist}
Release: 3%{?dist}
License: LGPLv3 or LGPLv2
Url: http://www.qt.io
@ -374,6 +374,9 @@ popd
%changelog
* Wed May 25 2022 Jan Grulich <jgrulich@redhat.com> - 6.3.0-3
- Fix path to lprodump
* Wed May 25 2022 Jan Grulich <jgrulich@redhat.com> - 6.3.0-2
- Enable examples

View File

@ -22,15 +22,3 @@ index 1910467..160b421 100644
+ runQtTool(QStringLiteral("lupdate-qt6"), lupdateOptions);
return 0;
}
diff --git a/src/linguist/shared/runqttool.cpp b/src/linguist/shared/runqttool.cpp
index caf1e41..7d854cc 100644
--- a/src/linguist/shared/runqttool.cpp
+++ b/src/linguist/shared/runqttool.cpp
@@ -119,6 +119,6 @@ std::unique_ptr<QTemporaryFile> createProjectDescription(QStringList args)
}
file->close();
args << QStringLiteral("-out") << file->fileName();
- runInternalQtTool(QStringLiteral("lprodump"), args);
+ runInternalQtTool(QStringLiteral("lprodump-qt6"), args);
return file;
}