Maemo: source all relevant profiles and ignore non-existing ones.

Reviewed-by: kh1
This commit is contained in:
Christian Kandeler
2010-09-13 16:50:30 +02:00
parent 8194d2287d
commit 947f0f3a30
4 changed files with 18 additions and 5 deletions

View File

@@ -240,7 +240,9 @@ void MaemoRemoteMounter::startUtfsClients()
.arg(mountSpec.remoteMountPoint);
if (mountInfo.mountAsRoot)
utfsClient.prepend(MaemoGlobal::remoteSudo() + QLatin1Char(' '));
remoteCall += andOp + mkdir + andOp + chmod + andOp + utfsClient;
QLatin1String seqOp("; ");
remoteCall += seqOp + MaemoGlobal::remoteSourceProfilesCommand()
+ seqOp + mkdir + andOp + chmod + andOp + utfsClient;
}
emit reportProgress(tr("Starting remote UTFS clients..."));