summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2012-07-09 04:25:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:54:03 +0100
commit33ec0e115c5c2e3c86d9389b6cb9e92811385b8f (patch)
tree449aaed693498d208cb62d87278d46fdeaa1f0df /meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch
parentcd3fcdd4c18ba75944615fb4f2eed4e77828a2a2 (diff)
downloadpoky-33ec0e115c5c2e3c86d9389b6cb9e92811385b8f.tar.gz
pcmanfm: fix build with automake 1.12.x
Added a patch: pcmanfm_fix_for_automake_1.12.patch More information in the patch header. (From OE-Core rev: fee7861dcaef40ab86888a12fc2550d03463f98a) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch')
-rw-r--r--meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch35
1 files changed, 35 insertions, 0 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 @@
1Upstream-Status: Pending
2
3Fix 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.
9Signed-Off-By: Nitin A Kamble <nitin.a.kamble@Intel.com>
102012/07/09
11
12Index: 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
24Index: 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 $@