Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
14 lines
825 B
Diff
14 lines
825 B
Diff
diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp
|
|
index b125299..0682b90 100644
|
|
--- a/src/sycoca/kbuildsycoca.cpp
|
|
+++ b/src/sycoca/kbuildsycoca.cpp
|
|
@@ -207,7 +207,7 @@ bool KBuildSycoca::build()
|
|
const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory);
|
|
qCDebug(SYCOCA) << "Looking for subdir" << m_resourceSubdir << "=>" << dirs;
|
|
for (const QString &dir : dirs) {
|
|
- QDirIterator it(dir, QDirIterator::Subdirectories);
|
|
+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
|
|
while (it.hasNext()) {
|
|
const QString filePath = it.next();
|
|
Q_ASSERT(filePath.startsWith(dir)); // due to the line below...
|