From ce44ede67ed42fc7ac93ea6d33e15a16baa642bc Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 24 Dec 2020 11:16:26 -0700 Subject: [PATCH] Add po4a for arch and fedora --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 428339c..4f9e3a2 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -187,7 +187,7 @@ freebsd() archLinux() { echo "Detected Arch Linux" - packages="cmake fuse git gperf perl-html-parser nasm wget texinfo bison flex" + packages="cmake fuse git gperf perl-html-parser nasm wget texinfo bison flex po4a" if [ "$1" == "qemu" ]; then packages="$packages qemu" elif [ "$1" == "virtualbox" ]; then @@ -286,7 +286,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 texinfo gettext-devel bison flex perl-HTML-Parser; do rpm -q $pkg > /dev/null || echo $pkg; done) + PKGS=$(for pkg in gcc gcc-c++ glibc-devel.i686 nasm make fuse-devel cmake texinfo gettext-devel bison flex perl-HTML-Parser po4a; do rpm -q $pkg > /dev/null || echo $pkg; done) # If the list of packages is not empty, install missing COUNT=$(echo $PKGS | wc -w) if [ $COUNT -ne 0 ]; then