nrpe: update to 4.1.3
[oi-userland.git] / components / editor / codeblocks / patches / 03-fix-64bit-plugin-dir.patch
blob0375501e50e7443cb3db5e8f96db71365c56a677
1 --- a/src/sdk/configmanager.cpp Sat Mar 28 12:36:00 2020
2 +++ b/src/sdk/configmanager.cpp Thu Nov 17 05:36:35 2022
3 @@ -1576,7 +1576,7 @@
4 if (!wxDirExists(ConfigManager::plugin_path_global) && wxIsPlatform64Bit())
6 // if standard-path does not exist and we are on 64-bit system, use lib64 instead
7 - ConfigManager::plugin_path_global = ((const wxStandardPaths&)wxStandardPaths::Get()).GetInstallPrefix() + _T("/lib64/codeblocks/plugins");
8 + ConfigManager::plugin_path_global = ((const wxStandardPaths&)wxStandardPaths::Get()).GetInstallPrefix() + _T("/lib/amd64/codeblocks/plugins");
10 #endif // __WXGTK__