Skip to content
Snippets Groups Projects
Commit ed5a0fb0 authored by ck's avatar ck
Browse files

Maemo: Remove special case for "developer" user.

This user now also resides under /home on the device.
parent 4c375045
No related branches found
No related tags found
No related merge requests found
...@@ -49,9 +49,7 @@ QString homeDirOnDevice(const QString &uname) ...@@ -49,9 +49,7 @@ QString homeDirOnDevice(const QString &uname)
{ {
const QString &dir = uname == QLatin1String("root") const QString &dir = uname == QLatin1String("root")
? QLatin1String("/root") ? QLatin1String("/root")
: uname == QLatin1String("developer") : QLatin1String("/home/") + uname;
? QLatin1String("/var/local/mad-developer-home")
: QLatin1String("/home/") + uname;
qDebug("%s: user name %s is mapped to home dir %s", qDebug("%s: user name %s is mapped to home dir %s",
Q_FUNC_INFO, qPrintable(uname), qPrintable(dir)); Q_FUNC_INFO, qPrintable(uname), qPrintable(dir));
return dir; return dir;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment