Fix QT_HOST_LIBEXECS for cross-builds on Windows
Like for LibraryExecutables, we must default to "bin" on Windows for HostLibraryExecutables in our generated qconfig.cpp. Pick-to: 6.1 Fixes: QTBUG-91496 Change-Id: Ib5a4b3b3fd6192bd953e615058b482e67ad19462 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
parent
728baba70a
commit
4b9173e354
@ -86,7 +86,11 @@ static const struct {
|
||||
{ "Sysroot", "" },
|
||||
{ "SysrootifyPrefix", "" },
|
||||
{ "HostBinaries", "bin" },
|
||||
#ifdef Q_OS_WIN
|
||||
{ "HostLibraryExecutables", "bin" },
|
||||
#else
|
||||
{ "HostLibraryExecutables", "libexec" },
|
||||
#endif
|
||||
{ "HostLibraries", "lib" },
|
||||
{ "HostData", "." },
|
||||
{ "TargetSpec", "" },
|
||||
|
Loading…
Reference in New Issue
Block a user