build_rust.sh - make is required

This commit is contained in:
Jarosław Kłopotek - INTERDUO 2024-06-28 09:04:14 +00:00
parent 32a417327a
commit 3ad129f841

View File

@ -18,6 +18,16 @@ else
echo "bpftool found."
fi
if ! make -v &> /dev/null
then
echo "make is not installed."
echo "Let's try to install it"
sudo apt install make
else
echo "make found."
fi
if ! pkg-config --help &> /dev/null
then
echo "pkg-config is not installed."