diff options
Diffstat (limited to 'app-admin/keepass/files/keepass-2.53-xsl-path-detection.patch')
-rw-r--r-- | app-admin/keepass/files/keepass-2.53-xsl-path-detection.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-admin/keepass/files/keepass-2.53-xsl-path-detection.patch b/app-admin/keepass/files/keepass-2.53-xsl-path-detection.patch new file mode 100644 index 000000000000..3fed7593a1de --- /dev/null +++ b/app-admin/keepass/files/keepass-2.53-xsl-path-detection.patch @@ -0,0 +1,22 @@ +--- a/KeePass/Forms/AboutForm.cs ++++ b/KeePass/Forms/AboutForm.cs +@@ -135,7 +135,18 @@ + m_lvComponents.Columns.Add(strValueColumn, 100);
+
+ string strExe = WinUtil.GetExecutable();
+- string strDir = UrlUtil.GetFileDirectory(strExe, true, false);
++ string strDir = null;
++ if (KeePassLib.Native.NativeLib.IsUnix())
++ {
++ string strBPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);
++ strBPath = UrlUtil.EnsureTerminatingSeparator(strBPath, false);
++ strBPath += PwDefs.ShortProductName.ToLower();
++ strDir = UrlUtil.EnsureTerminatingSeparator(strBPath, false);
++ }
++ else
++ {
++ strDir = UrlUtil.GetFileDirectory(strExe, true, false);
++ }
+
+ AddComponentItem(PwDefs.ShortProductName, strMainVersion, strExe);
+
|