From b62d169f0f2b31d87dcfe0fd20389e26e89d4269 Mon Sep 17 00:00:00 2001 From: atbrakhi Date: Wed, 7 Feb 2024 12:48:04 +0100 Subject: [PATCH] Remove duplicate pkg in APT_PKGS (#31280) We have `libgstreamer-plugins-base1.0-dev` twice in APT_PKGS, looks like a duplicate, this PR removes the duplicated pkg. --- python/servo/platform/linux.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/servo/platform/linux.py b/python/servo/platform/linux.py index c31cae7ee68..b895a0aa08c 100644 --- a/python/servo/platform/linux.py +++ b/python/servo/platform/linux.py @@ -27,7 +27,6 @@ APT_PKGS = [ 'build-essential', 'ccache', 'clang', 'cmake', 'curl', 'g++', 'git', 'gperf', 'libdbus-1-dev', 'libfreetype6-dev', 'libgl1-mesa-dri', 'libgles2-mesa-dev', 'libglib2.0-dev', - 'libgstreamer-plugins-base1.0-dev', 'gstreamer1.0-plugins-good', 'libgstreamer-plugins-good1.0-dev', 'gstreamer1.0-plugins-bad', 'libgstreamer-plugins-bad1.0-dev', 'gstreamer1.0-plugins-ugly',