1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Change data directory
Package installs data to /usr/share instead of users home folder.
Origin: http://anonscm.debian.org/gitweb/?p=collab-maint/gedit-r-plugin.git;a=tree;f=debian/patches
--- a/RCtrl.py
+++ b/RCtrl.py
@@ -2778,7 +2778,7 @@
if platform.platform() == 'Windows':
return os.path.expanduser('~/gedit/plugins/RCtrl')
else:
- return os.path.expanduser('~/.local/share/gedit/plugins/RCtrl')
+ return os.path.expanduser('/usr/share/gedit/plugins/RCtrl')
def do_activate(self):
self._instances[self.window] = RCtrlWindowHelper(self, self.window)
|