Add missing bootstrap package on Fedora.

Add `texinfo` package that is needed because the build process requires
`makeinfo` tool, that's part of that package.
This commit is contained in:
Cyryl Płotnicki 2019-02-03 13:17:11 +00:00
parent 5b510a978b
commit 2a8d6b564f

View file

@ -214,7 +214,7 @@ fedora()
fi
fi
# Use rpm -q <package> to check if it's already installed
PKGS=$(for pkg in gcc gcc-c++ glibc-devel.i686 nasm make fuse-devel cmake; do rpm -q $pkg > /dev/null; [ $? -ne 0 ] && echo $pkg; done)
PKGS=$(for pkg in gcc gcc-c++ glibc-devel.i686 nasm make fuse-devel cmake texinfo; do rpm -q $pkg > /dev/null; [ $? -ne 0 ] && echo $pkg; done)
# If the list of packages is not empty, install missing
COUNT=$(echo $PKGS | wc -w)
if [ $COUNT -ne 0 ]; then