diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-12-28 13:24:14 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 11:09:39 +0000 |
commit | f6f5382afabfd789d0bad9be16a52c59959f238a (patch) | |
tree | 4dfd19eb2743a4e2ce06716710c5be72d1e585d8 /meta/recipes-support/libfm/libfm-1.1.0 | |
parent | f6da046ac861379cbb7ab41f327c7ba5966af6c6 (diff) | |
download | poky-f6f5382afabfd789d0bad9be16a52c59959f238a.tar.gz |
libfm: upgrade to 1.1.0
libfm_fix_for_automake-1.12.patch: removed
- problem not reprodicible anymore
configure_fix.patch: removed
- not used
fix-make-parallelism-issue.patch: added
- assures that the ${includedir}/libfm symlink
is created
(From OE-Core rev: 013d96a601bfb9cc8a2ad51f456e0201666d7bc3)
Signed-off-by: Constantin Musca <constantinx.musca@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-support/libfm/libfm-1.1.0')
-rw-r--r-- | meta/recipes-support/libfm/libfm-1.1.0/fix-make-parallelism-issue.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-support/libfm/libfm-1.1.0/fix-make-parallelism-issue.patch b/meta/recipes-support/libfm/libfm-1.1.0/fix-make-parallelism-issue.patch new file mode 100644 index 0000000000..5d39d1954d --- /dev/null +++ b/meta/recipes-support/libfm/libfm-1.1.0/fix-make-parallelism-issue.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | Fix make parallelism issue | ||
2 | |||
3 | - remove pkginclude_HEADERS ( LIBFM_INCLUDES and LIBFM_GTK_INCLUDES | ||
4 | variables are empty) | ||
5 | - if we don't remove it then we will have a race condition between the code | ||
6 | that tries to symlink ${includedir}/libfm-1.0 to ${includedir}/libfm and the | ||
7 | am autogenerated code from the pkginclude_HEADERS definition which | ||
8 | tries to create pkgincludedir (${includedir}/libfm); | ||
9 | - if pkgincludedir is created before the symlink the symlink will be created | ||
10 | in the ${includedir}/libfm dir and it will have libfm-1.0 as name which is | ||
11 | wrong (we need the ${includedir}/libfm symlink for pcmanfm) | ||
12 | |||
13 | Upstream-Status: Pending | ||
14 | Signed-off-by: Constantin Musca <constantinx.musca@intel.com> | ||
15 | |||
16 | Index: libfm-1.1.0/src/Makefile.am | ||
17 | =================================================================== | ||
18 | --- libfm-1.1.0.orig/src/Makefile.am | ||
19 | +++ libfm-1.1.0/src/Makefile.am | ||
20 | @@ -211,11 +211,6 @@ libfmgtkinclude_HEADERS = \ | ||
21 | gtk/fm-gtk-marshal.h \ | ||
22 | $(NULL) | ||
23 | |||
24 | -pkginclude_HEADERS = \ | ||
25 | - $(LIBFM_INCLUDES) \ | ||
26 | - $(LIBFM_GTK_INCLUDES) \ | ||
27 | - $(NULL) | ||
28 | - | ||
29 | EXTRA_LTLIBRARIES = libfm-gtk.la libfm-gtk3.la | ||
30 | |||
31 | lib_LTLIBRARIES = libfm.la @LIBFM_GTK_LTLIBRARIES@ | ||