diff options
author | Ross Burton <ross.burton@intel.com> | 2012-07-31 18:17:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-06 15:39:37 +0100 |
commit | 1b348704a65428d90bae022a7c4aaf813c506a2a (patch) | |
tree | 582226ac28f18c8e20d088630995845357451cc9 /meta/recipes-gnome/gthumb/gthumb_2.12.4.bb | |
parent | 3f8e65fd444c57763a0881b929d6551aaf23b70b (diff) | |
download | poky-1b348704a65428d90bae022a7c4aaf813c506a2a.tar.gz |
gthumb: fix parallel build problems
It's possible with a parallel build for make to spin waiting for a file change
when it isn't going to. Fix the build rules so this doesn't happen.
[YOCTO #2319]
(From OE-Core rev: dea6a0eb2bf06b3dc47e276a046d8dd828e47228)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gthumb/gthumb_2.12.4.bb')
-rw-r--r-- | meta/recipes-gnome/gthumb/gthumb_2.12.4.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb index 6ab63bb3a8..0414386d8a 100644 --- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb +++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb | |||
@@ -4,17 +4,17 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | DEPENDS = "glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base" | 5 | DEPENDS = "glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base" |
6 | 6 | ||
7 | PR = "r3" | 7 | PR = "r4" |
8 | 8 | ||
9 | EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter" | 9 | EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter" |
10 | 10 | ||
11 | PARALLEL_MAKEINST="" | ||
12 | |||
13 | inherit gnome pkgconfig | 11 | inherit gnome pkgconfig |
14 | 12 | ||
15 | SRC_URI[archive.md5sum] = "97fc13221b0c5d80c27a2e25a3a3ac6f" | 13 | SRC_URI[archive.md5sum] = "97fc13221b0c5d80c27a2e25a3a3ac6f" |
16 | SRC_URI[archive.sha256sum] = "cf809695230ab8892a078be454a42ade865754c72ec1da7c3d74d4310de54f1d" | 14 | SRC_URI[archive.sha256sum] = "cf809695230ab8892a078be454a42ade865754c72ec1da7c3d74d4310de54f1d" |
17 | 15 | ||
16 | SRC_URI += "file://parallel.patch" | ||
17 | |||
18 | do_install_append () { | 18 | do_install_append () { |
19 | rm ${D}${libdir}/${BPN}/extensions/*.a | 19 | rm ${D}${libdir}/${BPN}/extensions/*.a |
20 | } | 20 | } |