Merge branch 'add-zstd' into 'master'

Add zstd to the bootstrap script

See merge request redox-os/redox!1427
This commit is contained in:
Jeremy Soller 2024-02-11 13:26:53 +00:00
commit 1fd8fee0e5

View file

@ -449,6 +449,7 @@ ubuntu()
xdg-utils \
xxd \
zip \
zstd \
"
# Not availible for at least ARM hosts
case "$host_arch" in
@ -579,7 +580,8 @@ fedora()
clang \
doxygen \
ant \
protobuf-compiler ; do rpm -q $pkg > /dev/null || echo $pkg; done)
protobuf-compiler \
zstd ; 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