Compare commits

..

2 Commits

Author SHA1 Message Date
Jeremy Soller 2e6050342d Merge branch 'fedora-fix-bootstrap' into 'master'
Fix bootstrap pkg install step for Fedora

See merge request redox-os/redox!1225
2019-12-22 13:28:43 +00:00
Graham MacDonald 61a24db772 Fix bootstrap pkg install step for Fedora 2019-12-21 20:33:30 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,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 texinfo gettext-devel bison flex perl-HTML-Parser; 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 gettext-devel bison flex perl-HTML-Parser; 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