diff options
author | Daniel Alley <dalley@redhat.com> | 2020-04-10 17:09:03 -0400 |
---|---|---|
committer | Daniel Alley <dalley@redhat.com> | 2020-04-12 22:41:42 -0400 |
commit | a3bb64c33cc1d62d81aced78ce273a9811cc4835 (patch) | |
tree | 50cbf2f699188c0303c7be1b72016b12cd6342e6 /python/servo/command_base.py | |
parent | 24a45248d4ff0e0b2b5d9bd4b66f587bd235f143 (diff) | |
download | servo-a3bb64c33cc1d62d81aced78ce273a9811cc4835.tar.gz servo-a3bb64c33cc1d62d81aced78ce273a9811cc4835.zip |
Remove some old requirements
Remove some bits left over from Skia and Ubuntu 14.04 support
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 9cba39dc2d7..875d7e62ca2 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -687,7 +687,7 @@ install them, let us know by filing a bug!") distrib, version, _ = distro.linux_distribution() distrib = six.ensure_str(distrib) version = six.ensure_str(version) - if distrib == "Ubuntu" and (version == "16.04" or version == "14.04"): + if distrib == "Ubuntu" and version == "16.04": env["HARFBUZZ_SYS_NO_PKG_CONFIG"] = "true" if extra_path: |