summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Soller <jackpot51@gmail.com>2024-02-11 13:26:53 +0000
committerJeremy Soller <jackpot51@gmail.com>2024-02-11 13:26:53 +0000
commit1fd8fee0e54c67f3f49014d3133181b28f047cbc (patch)
tree141ed1da2272c879e5c39bb173f82e8de91e44ba
parent7cef4fe6a3dacc8c02b983ee5d40698aa30e25b9 (diff)
parenta54af76a08814ad6877b955369acd8f51cae5bd5 (diff)
Merge branch 'add-zstd' into 'master'
Add zstd to the bootstrap script See merge request redox-os/redox!1427
-rwxr-xr-xbootstrap.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index d7d4cb2..31c95e1 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -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