fix: use dnf5-compatible group install syntax

`dnf groupinstall "Development Tools"` fails on dnf5 (Fedora 41+).
Use `dnf group install development-tools` which works on both dnf4
and dnf5.
This commit is contained in:
René Kuhn 2026-02-18 12:20:51 +01:00 committed by Chummy
parent e10d359cf9
commit 58a99abb96
2 changed files with 2 additions and 2 deletions

View file

@ -134,7 +134,7 @@ Example sample (macOS arm64, measured on February 18, 2026):
1. **Build essentials:**
- **Linux (Debian/Ubuntu):** `sudo apt install build-essential pkg-config`
- **Linux (Fedora/RHEL):** `sudo dnf groupinstall "Development Tools" && sudo dnf install pkg-config`
- **Linux (Fedora/RHEL):** `sudo dnf group install development-tools && sudo dnf install pkg-config`
- **macOS:** Install Xcode Command Line Tools: `xcode-select --install`
2. **Rust toolchain:**