From 15aaf9a163cd93c5bd71a4d6df26d29ca6d90738 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 16 Apr 2021 19:10:16 +0200 Subject: [PATCH] Stop installing debug repository apt key manually This shouldn't be necessary any longer, as the corresponding Ubuntu bug (https://bugs.launchpad.net/bugs/1920640) is supposed to be fixed. --- build/tools/before_install.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 9600cc2739..88a9a733bd 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -37,11 +37,6 @@ case $(uname -s) in # Note that this command works only on Ubuntu 18.04 LTS and newer. run_apt install -y ubuntu-dbgsym-keyring - # The key in the package above is currently (2021-03-22) out of - # date, so get the latest key manually (this is completely - # insecure, of course, but we don't care). - wget -O - http://ddebs.ubuntu.com/dbgsym-release-key.asc | $SUDO apt-key add - - # Install the symbols to allow LSAN suppression list to work. dbgsym_pkgs='libfontconfig1-dbgsym libglib2.0-0-dbgsym libgtk-3-0-dbgsym libatk-bridge2.0-0-dbgsym' fi