mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
34e8580ab9
Fixed underlinking. Moved plugins path to /usr/lib{,64}, noted in README Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
19 lines
627 B
Diff
19 lines
627 B
Diff
From: Michael Casadevall <sonicmctails@gmail.com>
|
|
Subject: hardcode the proper plugins folder to /usr/lib/codeblocks/plugins
|
|
Forwarded: no
|
|
|
|
---
|
|
src/sdk/configmanager.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- codeblocks.orig/src/sdk/configmanager.cpp
|
|
+++ codeblocks/src/sdk/configmanager.cpp
|
|
@@ -514,7 +514,7 @@ wxString ConfigManager::GetFolder(Search
|
|
|
|
case sdPluginsGlobal:
|
|
#ifndef CB_AUTOCONF
|
|
- return ConfigManager::data_path_global + _T("/plugins");
|
|
+ return _T("/usr/lib/codeblocks/plugins");
|
|
#else
|
|
return ConfigManager::plugin_path_global;
|
|
#endif
|