From ff915d642b94f8cbd45269eb8c133cdfe2e97bc0 Mon Sep 17 00:00:00 2001 From: ScuttoZ <96155174+ScuttoZ@users.noreply.github.com> Date: Fri, 6 Mar 2026 14:36:51 +0100 Subject: [PATCH] installation.md: Fixed syntax in dependencies script for Fedora --- doc/getting-started/getting-started/installation.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/getting-started/getting-started/installation.md b/doc/getting-started/getting-started/installation.md index e9a960ececf5..8236c0d147bf 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 ```