gstreamer/0001-ptp-Dont-install-test-executable.patch
Takashi Iwai ffc78b5361 Accepting request 1157146 from home:alarrosa:branches:multimedia:libs
- Replace the quick fix for boo#1221150 with the version submitted
  to upstream at
  https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6322:
  * 0001-Canonicalize-the-library-path-returned-by-dladdr.patch
- Remove previous version of the fix for boo#1221150:
  * force-find-gst-plugin-scanner.patch
- Fix sed command to set the gst-plugin-scanner suffix correctly
- Add preventive checks for the sed commands that set the binary
  suffix so that they don't silently fail anymore.

- Add patch from upstream to not install ptp-helper test executable
  * 0001-ptp-Dont-install-test-executable.patch

OBS-URL: https://build.opensuse.org/request/show/1157146
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer?expand=0&rev=218
2024-03-12 10:36:45 +00:00

31 lines
1.0 KiB
Diff

From 8859f257c2e4468875665d8782812b83f8ca741f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
Date: Tue, 5 Mar 2024 15:10:45 +0200
Subject: [PATCH] ptp: Don't install test executable
And handle it like all our other test executables.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6262>
---
subprojects/gstreamer/libs/gst/helpers/ptp/meson.build | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/libs/gst/helpers/ptp/meson.build b/subprojects/gstreamer/libs/gst/helpers/ptp/meson.build
index 55f1c6a106e..e12ca3fe73d 100644
--- a/libs/gst/helpers/ptp/meson.build
+++ b/libs/gst/helpers/ptp/meson.build
@@ -112,9 +112,7 @@ exe_test = executable('gst-ptp-helper-test', 'main.rs',
override_options : ['rust_std=2018'],
rust_args : ['--test', rust_args],
dependencies : [cap_dep],
- link_with : conf,
- install_dir : helpers_install_dir,
- install : true)
+ link_with : conf)
test('gst-ptp-helper-test', exe_test, protocol : 'rust')
--
GitLab