diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-03 17:47:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-09 00:13:57 -0700 |
commit | ecec4af3021b1fe0bac7b441f4e0364ce1a4d251 (patch) | |
tree | 0d6e93fa6751c74e7c09bf8188882d00f8dcb7b1 /meta/recipes-graphics/wayland/weston | |
parent | 8b847ffd040fc35d246079eb0b8d51331dc721b5 (diff) | |
download | poky-ecec4af3021b1fe0bac7b441f4e0364ce1a4d251.tar.gz |
weston: Fix parallel make race
The current approach used by the Makefile ends up installing
weston.desktop twice and can give build failures when using
parallel make flags. Change to just have one DATA reference.
(From OE-Core rev: 5191ab6962712908e1aa1dca0d4253fb278366c2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston')
-rw-r--r-- | meta/recipes-graphics/wayland/weston/parallelmake.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-graphics/wayland/weston/parallelmake.patch b/meta/recipes-graphics/wayland/weston/parallelmake.patch new file mode 100644 index 0000000000..34d7512b9e --- /dev/null +++ b/meta/recipes-graphics/wayland/weston/parallelmake.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | The current approach used by the Makefile ends up installing | ||
2 | weston.desktop twice and can give build failures when using | ||
3 | parallel make flags. Change to just have one DATA reference. | ||
4 | |||
5 | RP | ||
6 | 2015/8/3 | ||
7 | Upstream-Status: Pending | ||
8 | |||
9 | Index: weston-1.8.0/Makefile.am | ||
10 | =================================================================== | ||
11 | --- weston-1.8.0.orig/Makefile.am | ||
12 | +++ weston-1.8.0/Makefile.am | ||
13 | @@ -179,8 +179,7 @@ pkgconfigdir = $(libdir)/pkgconfig | ||
14 | pkgconfig_DATA = src/weston.pc | ||
15 | |||
16 | wayland_sessiondir = $(datadir)/wayland-sessions | ||
17 | -wayland_session_DATA = src/weston.desktop | ||
18 | -dist_wayland_session_DATA = $(wayland_session_DATA) | ||
19 | +dist_wayland_session_DATA = src/weston.desktop | ||
20 | |||
21 | westonincludedir = $(includedir)/weston | ||
22 | westoninclude_HEADERS = \ | ||