=== modified file 'Do.Platform.Linux/src/Do.Universe/ApplicationItemSource.cs' --- Do.Platform.Linux/src/Do.Universe/ApplicationItemSource.cs 2009-03-12 21:04:48 +0000 +++ Do.Platform.Linux/src/Do.Universe/ApplicationItemSource.cs 2009-03-18 09:05:04 +0000 @@ -130,8 +130,8 @@ if (xdgVar == "XDG_DATA_HOME") { yield return (new [] {home, ".local/share", appDirSuffix}.Aggregate (Path.Combine)); } else if (xdgVar == "XDG_DATA_DIRS") { - yield return Path.Combine ("/usr/local/share/", appDirSuffix); - yield return Path.Combine ("/usr/share/applications", appDirSuffix); + yield return Path.Combine ("/usr/local/share", appDirSuffix); + yield return Path.Combine ("/usr/share", appDirSuffix); } } else { foreach (string dir in envPath.Split (':'))