openbsd-ports/x11/kde4/libs/patches/patch-kio_kio_slave_cpp
2013-04-24 19:45:29 +00:00

14 lines
681 B
Plaintext

$OpenBSD: patch-kio_kio_slave_cpp,v 1.1 2013/04/24 19:45:29 zhuk Exp $
Allow libexec item to be found.
--- kio/kio/slave.cpp.orig Sun Aug 12 16:22:24 2012
+++ kio/kio/slave.cpp Sun Aug 12 16:22:40 2012
@@ -453,7 +453,7 @@ Slave* Slave::createSlave( const QString &protocol, co
const QStringList args = QStringList() << lib_path << protocol << "" << slaveAddress;
kDebug() << "kioslave" << ", " << lib_path << ", " << protocol << ", " << QString() << ", " << slaveAddress;
- QProcess::startDetached( KStandardDirs::locate("exe", "kioslave"), args );
+ QProcess::startDetached( KStandardDirs::findExe("kioslave"), args );
return slave;
}