forked from pool/FreeFileSync
6ea46d9294
* Show dynamic error and warning count in progress dialogs * Show process elevation status in title bar (Administrator, root) * Fixed libcurl bug CURLE_URL_MALFORMAT for numerical host name * Don't discard config panel last log after no changes found * Set taskbar relaunch command to launcher executable (Windows) * Fixed Btrfs compression not being applied during copy (Linux) * Run on file systems with buggy GetFinalPathNameByHandle() implementation, e.g. Dokany-based * Save selected view mode (F11) in batch config file - Rebase FreeFileSync-disable-in-app-updates.patch - Rebase FreeFileSync-resources.patch OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=67
15 lines
528 B
Diff
15 lines
528 B
Diff
Index: FreeFileSync-12.4/FreeFileSync/Source/ffs_paths.cpp
|
|
===================================================================
|
|
--- FreeFileSync-12.4.orig/FreeFileSync/Source/ffs_paths.cpp
|
|
+++ FreeFileSync-12.4/FreeFileSync/Source/ffs_paths.cpp
|
|
@@ -55,7 +55,8 @@ Zstring fff::getInstallDirPath()
|
|
|
|
Zstring fff::getResourceDirPath()
|
|
{
|
|
- return appendPath(getProcessParentFolderPath(), Zstr("Resources"));
|
|
+ // for opensuse install to /usr/share/FreeFileSync specificly
|
|
+ return Zstr("/usr/share/FreeFileSync/");
|
|
}
|
|
|
|
|