Without this patch the command run with runservice has a duplicate first argument
as QProcess already prepends the executable name.
Gbp-Pq: Name 01_fix-desktop-run.patch
QTextStream cerr(stderr);
KIO::DesktopExecParser execParser(_service, {});
- return !QProcess::startDetached(KIO::DesktopExecParser::executableName(_service.exec()), execParser.resultingArguments());
+ auto args = execParser.resultingArguments();
+ const auto execName = args.takeFirst();
+ return !QProcess::startDetached(execName, args);
}