File kio-5.76.0-skip-checking-executable-permissions-on-windows.patch of Package mingw64-kio
--- kio-5.76.0/src/core/desktopexecparser.cpp.orig 2022-07-14 15:15:02.661589014 +0200
+++ kio-5.76.0/src/core/desktopexecparser.cpp 2022-07-14 15:15:31.293514775 +0200
@@ -339,6 +339,7 @@
executableFullPath = binary;
}
+#ifndef Q_OS_WIN
// Now check that the binary exists and has the executable flag
if (!QFileInfo(executableFullPath).isExecutable()) {
// Does it really not exist, or is it non-executable (on Unix)? (bug #415567)
@@ -354,6 +355,7 @@
}
return QStringList();
}
+#endif
}
QStringList result;