1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(simple_make): remove code for no longer supported Debian 8

This commit is contained in:
Zetok Zalbavar 2017-10-29 08:23:56 +00:00
parent 2ce41521f2
commit 5eaf0ab133
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -32,15 +32,6 @@ apt_install() {
qttools5-dev-tools
)
local codename=$(lsb_release -c -s)
# Enable Debian Jessie backports repository for libsqlcipher-dev (if not yet enabled)
if [ ${codename} == jessie ] && [ $(apt-cache policy | fgrep jessie-backports -c) == 0 ]
then
echo "deb http://httpredir.debian.org/debian jessie-backports main" | sudo tee /etc/apt/sources.list.d/qtox-backports.list
sudo apt-get update
fi
sudo apt-get install "${apt_packages[@]}"
}