From 2a8d6b564f794bc1f9e20cf4cc6b1c99681ed5bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 3 Feb 2019 13:17:11 +0000 Subject: [PATCH] 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. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 2f19337..a0d2134 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -214,7 +214,7 @@ fedora() fi fi # Use rpm -q 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