* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-ugly: remove examples option
@ 2021-10-25 8:28 James Hilliard
2021-10-25 19:28 ` Peter Seiderer
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: James Hilliard @ 2021-10-25 8:28 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard
Fixes:
output/build/gst1-plugins-ugly-1.18.5/meson.build:1:0: ERROR: Unknown options: "examples"
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk | 1 -
1 file changed, 1 deletion(-)
diff --git a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
index b3dc765d07..a25110264e 100644
--- a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
+++ b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
@@ -14,7 +14,6 @@ GST1_PLUGINS_UGLY_LICENSE = LGPL-2.1+
GST1_PLUGINS_UGLY_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
GST1_PLUGINS_UGLY_CONF_OPTS += \
- -Dexamples=disabled \
-Dtests=disabled \
-Ddoc=disabled
--
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-plugins-ugly: remove examples option
2021-10-25 8:28 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-ugly: remove examples option James Hilliard
@ 2021-10-25 19:28 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:48 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-10-25 19:28 UTC (permalink / raw)
To: James Hilliard; +Cc: buildroot
Hello James,
On Mon, 25 Oct 2021 02:28:09 -0600, James Hilliard <james.hilliard1@gmail.com> wrote:
> Fixes:
> output/build/gst1-plugins-ugly-1.18.5/meson.build:1:0: ERROR: Unknown options: "examples"
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-plugins-ugly/gst1-plugins-ugly.mk | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> index b3dc765d07..a25110264e 100644
> --- a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> +++ b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> @@ -14,7 +14,6 @@ GST1_PLUGINS_UGLY_LICENSE = LGPL-2.1+
> GST1_PLUGINS_UGLY_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
>
> GST1_PLUGINS_UGLY_CONF_OPTS += \
> - -Dexamples=disabled \
> -Dtests=disabled \
> -Ddoc=disabled
>
_______________________________________________
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-plugins-ugly: remove examples option
2021-10-25 8:28 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-ugly: remove examples option James Hilliard
2021-10-25 19:28 ` Peter Seiderer
@ 2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:48 ` 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:28, James Hilliard wrote:
> Fixes:
> output/build/gst1-plugins-ugly-1.18.5/meson.build:1:0: ERROR: Unknown options: "examples"
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Applied to master, thanks.
Regards,
Arnout
> ---
> package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> index b3dc765d07..a25110264e 100644
> --- a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> +++ b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk
> @@ -14,7 +14,6 @@ GST1_PLUGINS_UGLY_LICENSE = LGPL-2.1+
> GST1_PLUGINS_UGLY_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
>
> GST1_PLUGINS_UGLY_CONF_OPTS += \
> - -Dexamples=disabled \
> -Dtests=disabled \
> -Ddoc=disabled
>
>
_______________________________________________
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-plugins-ugly: remove examples option
2021-10-25 8:28 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-ugly: remove examples option James Hilliard
2021-10-25 19:28 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
@ 2021-11-03 19:48 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-11-03 19:48 UTC (permalink / raw)
To: James Hilliard; +Cc: buildroot
>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:
> Fixes:
> output/build/gst1-plugins-ugly-1.18.5/meson.build:1:0: ERROR: Unknown options: "examples"
> 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:48 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:28 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-ugly: remove examples option James Hilliard
2021-10-25 19:28 ` Peter Seiderer
2021-10-26 20:00 ` Arnout Vandecappelle
2021-11-03 19:48 ` Peter Korsgaard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.