Merge branch 'zhiwei/fix-fedora-podman-bootstrap' into 'master'

Add fuse3-devel to the build dependencies list in podman bootstrap for Fedora

See merge request redox-os/redox!1661
This commit is contained in:
Jeremy Soller 2025-10-24 06:43:51 -06:00
commit 4786eaf7e3

2
podman_bootstrap.sh Executable file → Normal file
View File

@ -280,7 +280,7 @@ fedora()
fi
# Use rpm -q <package> to check if it's already installed
PKGS=$(for pkg in podman curl make fuse3 fuse-overlayfs slirp4netns gdb; do rpm -q $pkg > /dev/null || echo $pkg; done)
PKGS=$(for pkg in podman curl make fuse3 fuse3-devel fuse-overlayfs slirp4netns gdb; 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