diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-09-10 13:58:14 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-09-10 13:58:14 +0800 |
commit | 18c1ea8a747217ec3f32c88cad1a447ef2e39a12 (patch) | |
tree | 3210a4e4f71a7bd5514a4c52001cdb10320cef5b /deskutils/alacarte | |
parent | 344980041e0b30d961b8c0bd15e5dff78457a6bb (diff) | |
download | marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar.gz marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar.bz2 marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar.lz marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar.xz marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.tar.zst marcuscom-ports-18c1ea8a747217ec3f32c88cad1a447ef2e39a12.zip |
Update to 0.12.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12857 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/alacarte')
-rw-r--r-- | deskutils/alacarte/files/patch-Alacarte_util.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/deskutils/alacarte/files/patch-Alacarte_util.py b/deskutils/alacarte/files/patch-Alacarte_util.py new file mode 100644 index 000000000..fa7e2d800 --- /dev/null +++ b/deskutils/alacarte/files/patch-Alacarte_util.py @@ -0,0 +1,29 @@ +--- Alacarte/util.py.orig Tue Oct 3 15:11:10 2006 ++++ Alacarte/util.py Tue Oct 3 15:12:35 2006 +@@ -141,7 +141,7 @@ + file_path = os.path.join(system_path, 'applications', file_id) + if os.path.isfile(file_path): + return file_path +- file_path = os.path.join('/', 'usr', 'share', 'applications', file_id) ++ file_path = os.path.join('/', '/usr/local', 'share', 'applications', file_id) + if os.path.isfile(file_path): + return file_path + return False +@@ -166,7 +166,7 @@ + file_path = os.path.join(system_path, 'desktop-directories', file_id) + if os.path.isfile(file_path): + return file_path +- file_path = os.path.join('/', 'usr', 'share', 'desktop-directories', file_id) ++ file_path = os.path.join('/', '/usr/local', 'share', 'desktop-directories', file_id) + if os.path.isfile(file_path): + return file_path + return False +@@ -187,7 +187,7 @@ + file_path = os.path.join(system_path, 'menus', file_name) + if os.path.isfile(file_path): + return file_path +- file_path = os.path.join('/', 'etc', 'xdg', 'menus', file_name) ++ file_path = os.path.join('/', '/usr/local', 'etc', 'xdg', 'menus', file_name) + if os.path.isfile(file_path): + return file_path + return False |