summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2022-01-10 22:16:19 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2022-01-12 18:28:24 +0100
commit9d15854138b72be25f4584144eee8f4c0bf8117a (patch)
tree69fd0aa07a0947453dd482741a552d62aacf45c5 /qmake
parent96269ecc7763c0f192aa29203f28649a6fcd84ea (diff)
Fix wrong QT_HOST_* values when qt.conf is present
When a qt.conf was present, QT_HOST_* variables got a wrong default value. For example, QT_HOST_BINS would end with /bin/bin. We must not provide the defaults via QSettings::value(_, defaultValue). The assignment of the default value is done in QMakeLibraryInfo::rawLocation() separately after retrieving the value. This amends commit 04ec14105ec41a67fe4d53a1962c9d68c5fd8715. Pick-to: 6.3 Fixes: QTBUG-99656 Change-Id: I43431664e93ab40417a5432b03e7eb38ae21bad8 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/qmakelibraryinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/qmakelibraryinfo.cpp b/qmake/qmakelibraryinfo.cpp
index 59a4e6eb59..45c74c25ad 100644
--- a/qmake/qmakelibraryinfo.cpp
+++ b/qmake/qmakelibraryinfo.cpp
@@ -223,11 +223,11 @@ QString QMakeLibraryInfo::rawLocation(int loc, QMakeLibraryInfo::PathGroup group
: "Paths"));
if (locinfo.fallbackKey.isNull()) {
- ret = config->value(locinfo.key, locinfo.defaultValue).toString();
+ ret = config->value(locinfo.key).toString();
} else {
QVariant v = config->value(locinfo.key);
if (!v.isValid())
- v = config->value(locinfo.fallbackKey, locinfo.defaultValue);
+ v = config->value(locinfo.fallbackKey);
ret = v.toString();
}