diff --git a/scripts/pkgdep.sh b/scripts/pkgdep.sh index 3dabf4753..459873730 100755 --- a/scripts/pkgdep.sh +++ b/scripts/pkgdep.sh @@ -72,7 +72,7 @@ if [ -s /etc/redhat-release ]; then yum install -y python3-configshell python3-pexpect fi # Additional dependencies for ISA-L used in compression - yum install -y autoconf automake libtool + yum install -y autoconf automake libtool help2man elif [ -f /etc/debian_version ]; then # Includes Ubuntu, Debian apt-get install -y gcc g++ make libcunit1-dev libaio-dev libssl-dev \ @@ -91,7 +91,7 @@ elif [ -f /etc/debian_version ]; then apt-get install -y python3-configshell-fb python3-pexpect || echo \ "Note: Some SPDK CLI dependencies could not be installed." # Additional dependencies for ISA-L used in compression - apt-get install -y autoconf automake libtool + apt-get install -y autoconf automake libtool help2man elif [ -f /etc/SuSE-release ] || [ -f /etc/SUSE-brand ]; then zypper install -y gcc gcc-c++ make cunit-devel libaio-devel libopenssl-devel \ git-core lcov python-base python-pycodestyle libuuid-devel sg3_utils pciutils @@ -106,14 +106,14 @@ elif [ -f /etc/SuSE-release ] || [ -f /etc/SUSE-brand ]; then # Additional dependencies for building docs zypper install -y doxygen mscgen graphviz # Additional dependencies for ISA-L used in compression - zypper install -y autoconf automake libtool + zypper install -y autoconf automake libtool help2man elif [ $(uname -s) = "FreeBSD" ] ; then pkg install -y gmake cunit openssl git devel/astyle bash py27-pycodestyle \ python misc/e2fsprogs-libuuid sysutils/sg3_utils nasm # Additional dependencies for building docs pkg install -y doxygen mscgen graphviz # Additional dependencies for ISA-L used in compression - pkg install -y autoconf automake libtool + pkg install -y autoconf automake libtool help2man else echo "pkgdep: unknown system type." exit 1