From 99f6644e4f4229f2c7af97cf37fa8fb767b31ff2 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 17 Dec 2020 18:52:00 +0800 Subject: [PATCH] install-deps.sh: do not install libboost-all-dev for old distros ubuntu disco and ubuntu focal do not ship libboost 1.72 and up, and we depend on libboost 1.72 or up, so it does not help to install liboost 1.67 or libboost 1.71 anymore. Signed-off-by: Kefu Chai --- install-deps.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/install-deps.sh b/install-deps.sh index c34789969dbb3..e2df506dc8714 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -295,11 +295,9 @@ else $SUDO apt-get install -y nlohmann-json-dev ;; *Disco*) - [ ! $NO_BOOST_PKGS ] && $SUDO apt-get install -y libboost1.67-all-dev $SUDO apt-get install -y nlohmann-json-dev ;; *Focal*) - [ ! $NO_BOOST_PKGS ] && $SUDO apt-get install -y libboost1.71-all-dev $SUDO apt-get install -y nlohmann-json3-dev ;; *) -- 2.39.5