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 07:57:00 +0000 |
commit | 0fde7c96bd81f16a70ad7193a91c3c2021c4aca4 (patch) | |
tree | af0414bfbd67b6c76408f8326768d823cbe5a10d /meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch | |
parent | 9e0cad83eefae4c1a5e5e0334cc1cfdfc1f51057 (diff) | |
download | openembedded-core-0fde7c96bd81f16a70ad7193a91c3c2021c4aca4.tar.gz openembedded-core-0fde7c96bd81f16a70ad7193a91c3c2021c4aca4.tar.bz2 openembedded-core-0fde7c96bd81f16a70ad7193a91c3c2021c4aca4.zip |
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.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0/fix-install-hook.patch')
-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 @@ +This needs to be a install-data-hook not an install-exec-hook as the helpers are +installed into helperdir which is considered data (only path variables with +"exec" in are considered executables). + +The explicit dependency on install-helpersPROGRAMS was an attempt at solving +this, but this causes occasional races where install-helpersPROGRAMS can run +twice in parallel (once via install-all, once via the hook's dependency). + +Upstream-Status: Backport [09aa20746a0fef97fb811c5503928c13a1f55eb5] +Signed-off-by: Ross Burton <ross.burton@intel.com> + +diff --git a/libs/gst/helpers/Makefile.am b/libs/gst/helpers/Makefile.am +index 0ae9ab0..2530a34 100644 +--- a/libs/gst/helpers/Makefile.am ++++ b/libs/gst/helpers/Makefile.am +@@ -23,7 +23,7 @@ gst_ptp_helper_CFLAGS = $(GST_OBJ_CFLAGS) $(GIO_CFLAGS) + gst_ptp_helper_LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS) $(CAP_LIBS) + endif + +-install-exec-hook: install-helpersPROGRAMS ++install-data-hook: + if HAVE_PTP + if HAVE_PTP_HELPER_SETUID + - chown root $(DESTDIR)$(helpersdir)/gst-ptp-helper |