Utils: Fix missing modeBase

Change-Id: I8ce9393ef97b83b9db8cde12cc8653e9072dad65
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-03-03 14:43:50 +01:00
parent 89f98659ca
commit 1d6c161124

View File

@@ -1170,7 +1170,7 @@ FilePathInfo UnixDeviceFileAccess::filePathInfo(const FilePath &filePath) const
const RunResult stat = runInShell({"stat", args, OsType::OsTypeLinux}); const RunResult stat = runInShell({"stat", args, OsType::OsTypeLinux});
return FileUtils::filePathInfoFromTriple(QString::fromLatin1(stat.stdOut), return FileUtils::filePathInfoFromTriple(QString::fromLatin1(stat.stdOut),
osType() != OsTypeMac); osType() == OsTypeMac ? 8 : 16);
} }
// returns whether 'find' could be used. // returns whether 'find' could be used.