diff options
author | B Stack <bgstack15@gmail.com> | 2018-11-15 07:26:19 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2018-11-15 07:26:19 -0500 |
commit | 156f7537e3d2c3ff96d6a0073f19e1928303439d (patch) | |
tree | f90b7adc478d20df19b6a006814fff3e6bc08f8d /freefilesync/ffs_xdg_config_dir.patch | |
parent | freefilesync 10.6-1 (diff) | |
download | stackrpms-156f7537e3d2c3ff96d6a0073f19e1928303439d.tar.gz stackrpms-156f7537e3d2c3ff96d6a0073f19e1928303439d.tar.bz2 stackrpms-156f7537e3d2c3ff96d6a0073f19e1928303439d.zip |
fix mkdir -p ../Build/Bin
Diffstat (limited to 'freefilesync/ffs_xdg_config_dir.patch')
-rw-r--r-- | freefilesync/ffs_xdg_config_dir.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/freefilesync/ffs_xdg_config_dir.patch b/freefilesync/ffs_xdg_config_dir.patch deleted file mode 100644 index 6f27ab7..0000000 --- a/freefilesync/ffs_xdg_config_dir.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -Naur 10.6-0/FreeFileSync/Source/base/ffs_paths.cpp 10.6-1/FreeFileSync/Source/base/ffs_paths.cpp ---- 10.6-0/FreeFileSync/Source/base/ffs_paths.cpp 2018-11-13 06:58:40.771249592 -0500 -+++ 10.6-1/FreeFileSync/Source/base/ffs_paths.cpp 2018-11-14 21:39:14.715702415 -0500 -@@ -85,8 +85,11 @@ - else //OS standard path (XDG layout): ~/.config/FreeFileSync - { - //wxBug: wxStandardPaths::GetUserDataDir() does not honor FileLayout_XDG flag -- wxStandardPaths::Get().SetFileLayout(wxStandardPaths::FileLayout_XDG); -- cfgFolderPath = appendSeparator(utfTo<Zstring>(wxStandardPaths::Get().GetUserConfigDir())) + "FreeFileSync"; -+ -+ // Fedora 28 does not ship wxgtk 3.1.1... -+ // So subsitute a hard-coded name instead of requesting file layout of XDG -+ //wxStandardPaths::Get().SetFileLayout(wxStandardPaths::FileLayout_XDG); -+ cfgFolderPath = appendSeparator(utfTo<Zstring>(wxStandardPaths::Get().GetUserConfigDir())) + appendSeparator(utfTo<Zstring>(".config")) + "FreeFileSync"; - } - - #ifdef __GNUC__ |