diff options
-rw-r--r-- | meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch | 35 | ||||
-rw-r--r-- | meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb | 5 |
2 files changed, 38 insertions, 2 deletions
diff --git a/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch b/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch new file mode 100644 index 0000000000..1ad0ff5d13 --- /dev/null +++ b/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Fix these errors: | ||
4 | | automake: warnings are treated as errors | ||
5 | | data/ui/Makefile.am:18: warning: '%'-style pattern rules are a GNU make extension | ||
6 | | src/Makefile.am:10: warning: compiling 'pcmanfm.c' with per-target flags requires 'AM_PROG_CC_C_O' in 'configure.ac' | ||
7 | | autoreconf: automake failed with exit status: 1 | ||
8 | | ERROR: autoreconf execution failed. | ||
9 | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@Intel.com> | ||
10 | 2012/07/09 | ||
11 | |||
12 | Index: pcmanfm-0.9.10/configure.ac | ||
13 | =================================================================== | ||
14 | --- pcmanfm-0.9.10.orig/configure.ac | ||
15 | +++ pcmanfm-0.9.10/configure.ac | ||
16 | @@ -13,6 +13,7 @@ AC_PROG_CC | ||
17 | AM_PROG_LIBTOOL | ||
18 | AM_PROG_CC_STDC | ||
19 | AC_HEADER_STDC | ||
20 | +AM_PROG_CC_C_O | ||
21 | |||
22 | # Checks for header files. | ||
23 | AC_HEADER_STDC | ||
24 | Index: pcmanfm-0.9.10/data/ui/Makefile.am | ||
25 | =================================================================== | ||
26 | --- pcmanfm-0.9.10.orig/data/ui/Makefile.am | ||
27 | +++ pcmanfm-0.9.10/data/ui/Makefile.am | ||
28 | @@ -15,6 +15,6 @@ EXTRA_DIST = \ | ||
29 | $(NULL) | ||
30 | |||
31 | # Purge GtkBuilder UI files | ||
32 | -%.ui: %.glade | ||
33 | +.glade.ui: | ||
34 | cp $< $@ | ||
35 | # $(top_builddir)/src/xml-purge $@ | ||
diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb b/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb index 545367a943..576b4baa43 100644 --- a/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb +++ b/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb | |||
@@ -11,7 +11,7 @@ SECTION = "x11" | |||
11 | DEPENDS = "gtk+ startup-notification libfm" | 11 | DEPENDS = "gtk+ startup-notification libfm" |
12 | DEPENDS_append_poky = " libowl" | 12 | DEPENDS_append_poky = " libowl" |
13 | 13 | ||
14 | PR = "r0" | 14 | PR = "r1" |
15 | 15 | ||
16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)' | 16 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)' |
17 | 17 | ||
@@ -20,7 +20,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ | |||
20 | file://gnome-fs-regular.png \ | 20 | file://gnome-fs-regular.png \ |
21 | file://gnome-mime-text-plain.png \ | 21 | file://gnome-mime-text-plain.png \ |
22 | file://emblem-symbolic-link.png \ | 22 | file://emblem-symbolic-link.png \ |
23 | file://cross-compile-fix.patch" | 23 | file://cross-compile-fix.patch \ |
24 | file://pcmanfm_fix_for_automake_1.12.patch" | ||
24 | 25 | ||
25 | SRC_URI_append_poky = " file://owl-window-menu.patch" | 26 | SRC_URI_append_poky = " file://owl-window-menu.patch" |
26 | 27 | ||