From 7c050ae1bd43f504c0368eb286584456160df370 Mon Sep 17 00:00:00 2001 From: AJRepo Date: Fri, 3 Jul 2020 15:57:25 -0500 Subject: [PATCH] Doc: Linux gstreamer install, exclude doc packages In the installation of gstreamer-dev packages on Linux, excluding the doc packages saves disk space and bandwidth. --- src/VideoReceiver/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VideoReceiver/README.md b/src/VideoReceiver/README.md index 73de76e41..9034d28ba 100644 --- a/src/VideoReceiver/README.md +++ b/src/VideoReceiver/README.md @@ -50,7 +50,7 @@ QGC also supports RTSP, TCP-MPEG2 and MPEG-TS (h.264) pipelines. Use apt-get to install GStreamer 1.0 ``` -list=$(apt-cache --names-only search ^gstreamer1.0-* | awk '{ print $1 }' | grep -v gstreamer1.0-hybris) +list=$(apt-cache --names-only search ^gstreamer1.0-* | awk '{ print $1 }' | sed -e /-doc/d | grep -v gstreamer1.0-hybris) ``` ``` sudo apt-get install $list -- 2.22.0