Files
poky/meta/packages/pcmanfm/files/cross-compile-fix.patch
Zhai Edwin 56bbb27bb0 pcmanfm: re-update it to 0.9.7
Previous update was reverted due to some reason. This commit re-introduce the
update after following efforts:

* rebase owl-window-menu.patch - Translate the menu of gtk_ui_manager to
  original gtk menu, to enable owl feature.

* fix cross-compile issue - 0.9.7 use a temp binary, built from its own source
  code, to optimize the data file size. This binary for target can't run on
  build system. As this size optimization only gain 0.2K improvement for one
  data file(used for about dialog), disable it to work around this issue. No
  perf drop found after this fix.

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-08-06 18:28:26 +01:00

17 lines
645 B
Diff

pcmanfm need a binary xml-purge(from its own source code) to optimize size of
data file, which cause build error on cross-compile environment. Simplely
remove it to work aound this issue.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Index: pcmanfm-0.9.7/data/ui/Makefile.am
===================================================================
--- pcmanfm-0.9.7.orig/data/ui/Makefile.am 2010-07-29 15:10:18.000000000 +0800
+++ pcmanfm-0.9.7/data/ui/Makefile.am 2010-07-29 15:11:24.000000000 +0800
@@ -21,4 +21,4 @@
# Purge GtkBuilder UI files
%.ui: %.glade
cp $< $@
- $(top_builddir)/src/xml-purge $@
+# $(top_builddir)/src/xml-purge $@