diff options
author | Ross Burton <ross.burton@intel.com> | 2015-11-12 19:47:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-25 08:08:08 +0000 |
commit | ee923bf11fad93d7327bb401668f6413efdb3f3c (patch) | |
tree | 3d349cc5412f9b03b920dbd4620c0b65c09c1352 /meta/recipes-multimedia/gstreamer/gstreamer1.0 | |
parent | 0ae52c8b2c1d7d7cdbcfeeae6ff42e64f16bc41d (diff) | |
download | poky-ee923bf11fad93d7327bb401668f6413efdb3f3c.tar.gz |
gstreamer1.0: fix install race
The install hook needs to be a data hook not an exec hook (because automake),
the explicit dependency upstream added to fix the ordering results in
install-helpersPROGRAMS executing twice and potentially racing.
(From OE-Core rev: 0fde7c96bd81f16a70ad7193a91c3c2021c4aca4)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch new file mode 100644 index 0000000000..71bd9bc319 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | This needs to be a install-data-hook not an install-exec-hook as the helpers are | ||
2 | installed into helperdir which is considered data (only path variables with | ||
3 | "exec" in are considered executables). | ||
4 | |||
5 | The explicit dependency on install-helpersPROGRAMS was an attempt at solving | ||
6 | this, but this causes occasional races where install-helpersPROGRAMS can run | ||
7 | twice in parallel (once via install-all, once via the hook's dependency). | ||
8 | |||
9 | Upstream-Status: Backport [09aa20746a0fef97fb811c5503928c13a1f55eb5] | ||
10 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
11 | |||
12 | diff --git a/libs/gst/helpers/Makefile.am b/libs/gst/helpers/Makefile.am | ||
13 | index 0ae9ab0..2530a34 100644 | ||
14 | --- a/libs/gst/helpers/Makefile.am | ||
15 | +++ b/libs/gst/helpers/Makefile.am | ||
16 | @@ -23,7 +23,7 @@ gst_ptp_helper_CFLAGS = $(GST_OBJ_CFLAGS) $(GIO_CFLAGS) | ||
17 | gst_ptp_helper_LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS) $(CAP_LIBS) | ||
18 | endif | ||
19 | |||
20 | -install-exec-hook: install-helpersPROGRAMS | ||
21 | +install-data-hook: | ||
22 | if HAVE_PTP | ||
23 | if HAVE_PTP_HELPER_SETUID | ||
24 | - chown root $(DESTDIR)$(helpersdir)/gst-ptp-helper | ||