diff options
author | David Galloway <dgallowa@redhat.com> | 2022-09-01 16:02:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 16:02:07 +0200 |
commit | f4df4090b040f1d2c2912533f0cbf5fae6fab9c4 (patch) | |
tree | 0c6ccb73f19c0d3b93ec026952627e7552c2501b /install-deps.sh | |
parent | Merge pull request #47886 from ceph/chillout (diff) | |
parent | install-deps: Actually install libboost we built for Jammy (diff) | |
download | ceph-f4df4090b040f1d2c2912533f0cbf5fae6fab9c4.tar.xz ceph-f4df4090b040f1d2c2912533f0cbf5fae6fab9c4.zip |
Merge pull request #47885 from ceph/boost-focal
install-deps: Actually install libboost we built for Jammy
Diffstat (limited to 'install-deps.sh')
-rwxr-xr-x | install-deps.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install-deps.sh b/install-deps.sh index 432855f51f5..e14e16274ed 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 ;; |