diff options
author | atbrakhi <atbrakhi@igalia.com> | 2024-02-07 12:48:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 11:48:04 +0000 |
commit | b62d169f0f2b31d87dcfe0fd20389e26e89d4269 (patch) | |
tree | 10642701b1c794f8a21b6b1f27991fe4c011e826 /python | |
parent | ba1803d30ad822250ac9827f35331250cec5fbf6 (diff) | |
download | servo-b62d169f0f2b31d87dcfe0fd20389e26e89d4269.tar.gz servo-b62d169f0f2b31d87dcfe0fd20389e26e89d4269.zip |
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.
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/platform/linux.py | 1 |
1 files changed, 0 insertions, 1 deletions
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', |