From e2fba2d228fd21edbb6cdd39cc007c64eb926c6e Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 31 Aug 2022 14:02:36 -0400 Subject: [PATCH] install-deps: Actually install libboost we built for Jammy Follow up to https://github.com/ceph/ceph/commit/947ac23979b6c4ba2617090f2d9a36e1f40f60c8 Signed-off-by: David Galloway --- install-deps.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install-deps.sh b/install-deps.sh index 25f066a01aa50..99520b4001105 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -344,6 +344,10 @@ else [ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu focal $with_zbd && install_libzbd_on_ubuntu focal ;; + *Jammy*) + [ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu jammy + $SUDO apt-get install -y gcc + ;; *) $SUDO apt-get install -y gcc ;;