* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option
@ 2021-10-25 8:32 James Hilliard
2021-10-25 19:31 ` Peter Seiderer
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: James Hilliard @ 2021-10-25 8:32 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard
Fixes:
output/build/gst1-vaapi-1.18.5/meson.build:1:0: ERROR: Unknown options: "test"
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/gstreamer1/gst1-vaapi/gst1-vaapi.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
index 497c6df0d3..9810b12cf7 100644
--- a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
+++ b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
@@ -24,7 +24,7 @@ GST1_VAAPI_CONF_OPTS += \
-Dwith_wayland=no \
-Dwith_egl=no \
-Dexamples=disabled \
- -Dtest=disabled \
+ -Dtests=disabled \
-Ddoc=disabled
ifeq ($(BR2_PACKAGE_GST1_VAAPI_ENCODERS),y)
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option
2021-10-25 8:32 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option James Hilliard
@ 2021-10-25 19:31 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:49 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-10-25 19:31 UTC (permalink / raw)
To: James Hilliard; +Cc: buildroot
On Mon, 25 Oct 2021 02:32:17 -0600, James Hilliard <james.hilliard1@gmail.com> wrote:
> Fixes:
> output/build/gst1-vaapi-1.18.5/meson.build:1:0: ERROR: Unknown options: "test"
Same comment as for the package/gstreamer1/gst1-plugins-bad patch...
Otherwise (and thanks for fixing):
Reviewed-by: Peter Seiderer <ps.report@gmx.net>
Regars,
Peter
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> package/gstreamer1/gst1-vaapi/gst1-vaapi.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> index 497c6df0d3..9810b12cf7 100644
> --- a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> +++ b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> @@ -24,7 +24,7 @@ GST1_VAAPI_CONF_OPTS += \
> -Dwith_wayland=no \
> -Dwith_egl=no \
> -Dexamples=disabled \
> - -Dtest=disabled \
> + -Dtests=disabled \
> -Ddoc=disabled
>
> ifeq ($(BR2_PACKAGE_GST1_VAAPI_ENCODERS),y)
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option
2021-10-25 8:32 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option James Hilliard
2021-10-25 19:31 ` Peter Seiderer
@ 2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:49 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2021-10-26 20:00 UTC (permalink / raw)
To: James Hilliard, buildroot
On 25/10/2021 10:32, James Hilliard wrote:
> Fixes:
> output/build/gst1-vaapi-1.18.5/meson.build:1:0: ERROR: Unknown options: "test"
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Applied to master, thanks.
Regards,
Arnout
> ---
> package/gstreamer1/gst1-vaapi/gst1-vaapi.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> index 497c6df0d3..9810b12cf7 100644
> --- a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> +++ b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
> @@ -24,7 +24,7 @@ GST1_VAAPI_CONF_OPTS += \
> -Dwith_wayland=no \
> -Dwith_egl=no \
> -Dexamples=disabled \
> - -Dtest=disabled \
> + -Dtests=disabled \
> -Ddoc=disabled
>
> ifeq ($(BR2_PACKAGE_GST1_VAAPI_ENCODERS),y)
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option
2021-10-25 8:32 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option James Hilliard
2021-10-25 19:31 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
@ 2021-11-03 19:49 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-11-03 19:49 UTC (permalink / raw)
To: James Hilliard; +Cc: buildroot
>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:
> Fixes:
> output/build/gst1-vaapi-1.18.5/meson.build:1:0: ERROR: Unknown options: "test"
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Committed to 2021.02.x and 2021.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-11-03 19:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-25 8:32 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-vaapi: fix tests config option James Hilliard
2021-10-25 19:31 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:49 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox