From 55038ed4f6d16e8fe87f75318845db25d5bc5fba Mon Sep 17 00:00:00 2001 From: Ribbon Date: Fri, 14 Jun 2024 21:18:16 +0000 Subject: [PATCH] Improve the Fedora target on bootstrap.sh --- bootstrap.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 1e5fdf7..8bf53e6 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -530,7 +530,8 @@ fedora() fi # Use rpm -q to check if it's already installed - PKGS=$(for pkg in file \ + PKGS=$(for pkg in @development-tools \ + file \ autoconf \ vim \ bison \ @@ -583,7 +584,8 @@ fedora() doxygen \ ant \ protobuf-compiler \ - zstd ; do rpm -q $pkg > /dev/null || echo $pkg; done) + zstd \ + lzip ; 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