Forgot to add Debian efreet patch.

SVN revision: 34465
This commit is contained in:
kaethorn 2008-05-05 23:01:13 +00:00 committed by kaethorn
parent 866666fe33
commit 3811012c07
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#Allows E17 to find a menu provided by the e17 package if no menus are found
#after searching the FDO paths
--- efreet-0.0.3/src/lib/efreet_menu.c 2007-05-13 18:58:05.000000000 +0200
+++ efreet-0.0.3.patch/src/lib/efreet_menu.c 2007-05-13 18:57:35.000000000 +0200
@@ -583,6 +583,9 @@
return efreet_menu_parse(menu);
}
+ snprintf(menu, sizeof(menu), "/etc/xdg/menus/enlightenment-applications.menu");
+ if (ecore_file_exists(menu)) return efreet_menu_parse(menu);
+
return NULL;
}