about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-6/patches/qttools-paths.patch
blob: 6e7b8488fa543854c6102fdd70e60bd939189adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
diff --git a/src/linguist/shared/runqttool.cpp b/src/linguist/shared/runqttool.cpp
index d355b9dc..94fef33f 100644
--- a/src/linguist/shared/runqttool.cpp
+++ b/src/linguist/shared/runqttool.cpp
@@ -20,9 +20,21 @@ class FMT {
     Q_DECLARE_TR_FUNCTIONS(Linguist)
 };

+static QString qtBasePath(QLibraryInfo::LibraryPath location)
+{
+  switch (location) {
+    case QLibraryInfo::BinariesPath:
+      return QLatin1String(NIX_OUTPUT_OUT) + QLatin1String("/bin");
+    case QLibraryInfo::LibraryExecutablesPath:
+      return QLatin1String(NIX_OUTPUT_OUT) + QLatin1String("/libexec");
+    default:
+      return QLibraryInfo::path(location);
+  }
+}
+
 static QString qtToolFilePath(const QString &toolName, QLibraryInfo::LibraryPath location)
 {
-    QString filePath = QLibraryInfo::path(location) + QLatin1Char('/') + toolName;
+    QString filePath = qtBasePath(location) + QLatin1Char('/') + toolName;
 #ifdef Q_OS_WIN
     filePath.append(QLatin1String(".exe"));
 #endif