Commit d0615b99 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix Libboost issue for U18 in baremetal deployment

parent 54b57e23
...@@ -493,8 +493,16 @@ check_install_amf_deps(){ ...@@ -493,8 +493,16 @@ check_install_amf_deps(){
fi fi
echo "Install distro libs" echo "Install distro libs"
$SUDO $INSTALLER install $OPTION $PACKAGE_LIST $SUDO $INSTALLER install $OPTION $PACKAGE_LIST
$SUDO $INSTALLER remove libboost1.65-dev
$SUDO $INSTALLER install libboost1.67-dev if [[ $OS_DISTRO == "ubuntu" ]]; then
case "$(get_distribution_release)" in
"ubuntu18.04")
$SUDO $INSTALLER remove libboost1.65-dev
$SUDO $INSTALLER install libboost1.67-dev
;;
esac
fi
ret=$?;[[ $ret -ne 0 ]] && return $ret ret=$?;[[ $ret -ne 0 ]] && return $ret
echo "distro libs installation complete" echo "distro libs installation complete"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment