scripts: Add a package which was used in ISA-L module in pkgdep.sh.
It seems that need to add help2man in pkgdep.sh , it was used in ISA-L module. Change-Id: I9d69e2cba270b1802c333941160ca714b85c21d2 Signed-off-by: yidong0635 <dongx.yi@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/450562 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
This commit is contained in:
parent
58d923e6cc
commit
4626e2b5a5
@ -72,7 +72,7 @@ if [ -s /etc/redhat-release ]; then
|
|||||||
yum install -y python3-configshell python3-pexpect
|
yum install -y python3-configshell python3-pexpect
|
||||||
fi
|
fi
|
||||||
# Additional dependencies for ISA-L used in compression
|
# 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
|
elif [ -f /etc/debian_version ]; then
|
||||||
# Includes Ubuntu, Debian
|
# Includes Ubuntu, Debian
|
||||||
apt-get install -y gcc g++ make libcunit1-dev libaio-dev libssl-dev \
|
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 \
|
apt-get install -y python3-configshell-fb python3-pexpect || echo \
|
||||||
"Note: Some SPDK CLI dependencies could not be installed."
|
"Note: Some SPDK CLI dependencies could not be installed."
|
||||||
# Additional dependencies for ISA-L used in compression
|
# 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
|
elif [ -f /etc/SuSE-release ] || [ -f /etc/SUSE-brand ]; then
|
||||||
zypper install -y gcc gcc-c++ make cunit-devel libaio-devel libopenssl-devel \
|
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
|
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
|
# Additional dependencies for building docs
|
||||||
zypper install -y doxygen mscgen graphviz
|
zypper install -y doxygen mscgen graphviz
|
||||||
# Additional dependencies for ISA-L used in compression
|
# 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
|
elif [ $(uname -s) = "FreeBSD" ] ; then
|
||||||
pkg install -y gmake cunit openssl git devel/astyle bash py27-pycodestyle \
|
pkg install -y gmake cunit openssl git devel/astyle bash py27-pycodestyle \
|
||||||
python misc/e2fsprogs-libuuid sysutils/sg3_utils nasm
|
python misc/e2fsprogs-libuuid sysutils/sg3_utils nasm
|
||||||
# Additional dependencies for building docs
|
# Additional dependencies for building docs
|
||||||
pkg install -y doxygen mscgen graphviz
|
pkg install -y doxygen mscgen graphviz
|
||||||
# Additional dependencies for ISA-L used in compression
|
# Additional dependencies for ISA-L used in compression
|
||||||
pkg install -y autoconf automake libtool
|
pkg install -y autoconf automake libtool help2man
|
||||||
else
|
else
|
||||||
echo "pkgdep: unknown system type."
|
echo "pkgdep: unknown system type."
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user