diff --git a/servo/python/servo/bootstrap.py b/servo/python/servo/bootstrap.py index 1357abac14a8..010b410b9d48 100644 --- a/servo/python/servo/bootstrap.py +++ b/servo/python/servo/bootstrap.py @@ -270,7 +270,13 @@ def bootstrap(context, force=False): bootstrapper = windows_msvc elif "linux-gnu" in host_triple(): distro, version, _ = platform.linux_distribution() - if distro in ['CentOS', 'CentOS Linux', 'Fedora', 'Ubuntu']: + if distro.lower() in [ + 'centos', + 'centos linux', + 'debian', + 'fedora', + 'ubuntu', + ]: context.distro = distro bootstrapper = salt