From 2d6575e58de76420d4075fdea2e117b27b4c141f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Sat, 18 May 2024 14:09:15 +0200 Subject: [PATCH] setup: Add Fedora compile links --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 412cb9d0a8..a70ca7bf43 100644 --- a/setup.py +++ b/setup.py @@ -154,7 +154,8 @@ def compilation_help(): distro_mapping = { 'ubuntu': 'Ubuntu', 'debian': 'Debian', - 'slackware': 'Slackware' + 'slackware': 'Slackware', + 'fedora': 'Fedora', } the_system = distro_mapping.get(distro_name, the_system) @@ -164,6 +165,7 @@ def compilation_help(): 'Windows': 'https://www.pygame.org/wiki/CompileWindows', 'Darwin': 'https://www.pygame.org/wiki/MacCompile', 'RedHat': 'https://www.pygame.org/wiki/CompileRedHat', + 'Fedora': 'https://www.pygame.org/wiki/CompileFedora', # TODO There is nothing in the following pages yet 'Suse': 'https://www.pygame.org/wiki/CompileSuse', 'Python (from pypy.org)': 'https://www.pygame.org/wiki/CompilePyPy',