summaryrefslogtreecommitdiffstats
path: root/src/core/web_engine_library_info.cpp
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2021-05-22 00:39:26 +0200
committerMichal Klocek <michal.klocek@qt.io>2021-05-22 14:11:13 +0200
commiteccd79358b682f920d62f3cb82ae0eb58382f381 (patch)
treefe561f4baac142eea5682122a2d2580060f3df03 /src/core/web_engine_library_info.cpp
parent8c88c9d04ef4dcd84b086b7c0b8a7aa896b68d6e (diff)
Revert "Look for resources in macOS standard Resources dir"
This reverts commit 3a4e3c807c667491e133d04e3dcbadd0dad19826. With cmake we no longer install into capitalized directories, this went unnoticed for a while, till one of the mac coin nodes got the case sensitive file system. Change-Id: I8442ed6a3f02c37786ba7f98d891a1ddbbf10a2a Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core/web_engine_library_info.cpp')
-rw-r--r--src/core/web_engine_library_info.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/web_engine_library_info.cpp b/src/core/web_engine_library_info.cpp
index 6eb90f2e6..4c540ad73 100644
--- a/src/core/web_engine_library_info.cpp
+++ b/src/core/web_engine_library_info.cpp
@@ -277,8 +277,6 @@ QString resourcesDataPath()
static QString potentialResourcesPath =
#if defined(OS_MAC) && defined(QT_MAC_FRAMEWORK_BUILD)
getResourcesPath(frameworkBundle());
-#elif defined(OS_MAC)
- QLibraryInfo::location(QLibraryInfo::DataPath) % QLatin1String("/Resources");
#else
QLibraryInfo::path(QLibraryInfo::DataPath) % QLatin1String("/resources");
#endif