installation.md: Fixed syntax in dependencies script for Fedora
What changed, and why it matters
This commit fixes a documentation typo in the Fedora install instructions. It swaps two group names to their modern DNF identifiers and adds a missing Python package (python3-mako) needed for building. There is no code change and no security issue.
No security action required. Treat as routine documentation fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch updates doc/getting-started/getting-started/installation.md only. It changes DNF groupinstall package group names from quoted human-readable strings (‘C Development Tools and Libraries’, ‘Development Tools’) to the current DNF group IDs (‘c-development’, ‘development-tools’), and adds ‘python3-mako’ to the install list. This is a build-documentation correctness fix with no runtime or security implications.
Changed components
doc/getting-started/getting-started/installation.mdInspect captured patch +4 / −3
diff --git a/doc/getting-started/getting-started/installation.md b/doc/getting-started/getting-started/installation.md
index e9a960ec..8236c0d1 100644
--- a/doc/getting-started/getting-started/installation.md
+++ b/doc/getting-started/getting-started/installation.md
@@ -158,8 +158,8 @@ Get dependencies:
```shell
sudo dnf update -y && \
sudo dnf groupinstall -y \
- 'C Development Tools and Libraries' \
- 'Development Tools' && \
+ 'c-development' \
+ 'development-tools' && \
sudo dnf install -y \
clang \
gettext \
@@ -179,7 +179,8 @@ sudo dnf update -y && \
sed \
protobuf-compiler \
protobuf-devel \
- postgresql-devel && \
+ postgresql-devel \
+ python3-mako && \
sudo dnf clean all
```
Why this scored 16/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.