diff options
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 9291ce87e3f..fa8fa7488ed 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -64,7 +64,7 @@ def run_as_root(command, force=False): def install_linux_deps(context, pkgs_ubuntu, pkgs_fedora, force): install = False pkgs = [] - if context.distro == 'Ubuntu': + if context.distro in ['Ubuntu', 'Debian GNU/Linux']: command = ['apt-get', 'install'] pkgs = pkgs_ubuntu if subprocess.call(['dpkg', '-s'] + pkgs, stdout=PIPE, stderr=PIPE) != 0: |