diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-04-23 21:52:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 21:52:59 -0400 |
commit | ec680de0635932201655318a3acf446c40b14e03 (patch) | |
tree | 84dd273f88ef643c1697fc184299e26e6c6164d7 /python | |
parent | 155fad62b32f9879893a9f45cde9695ba735f95f (diff) | |
parent | 61f7f12f586b039a7f89a72091ba4134e82a6946 (diff) | |
download | servo-ec680de0635932201655318a3acf446c40b14e03.tar.gz servo-ec680de0635932201655318a3acf446c40b14e03.zip |
Auto merge of #23248 - asajeffrey:liblzma-dev-dependency, r=jdm
Added liblzma-dev dependency on Debian
<!-- Please describe your changes on the following line: -->
This fixes a link error on Debian Linux
```
= note: /usr/bin/ld.gold: error: cannot find -llzma
collect2: error: ld returned 1 exit status
```
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not require tests because it's a README
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23248)
<!-- Reviewable:end -->
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/bootstrap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 9fefd495008..28292ea3510 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -111,7 +111,8 @@ def linux(context, force=False): pkgs_apt = ['git', 'curl', 'autoconf', 'libx11-dev', 'libfreetype6-dev', 'libgl1-mesa-dri', 'libglib2.0-dev', 'xorg-dev', 'gperf', 'g++', 'build-essential', 'cmake', 'python-pip', - 'libbz2-dev', 'libosmesa6-dev', 'libxmu6', 'libxmu-dev', 'libglu1-mesa-dev', + 'libbz2-dev', 'liblzma-dev', + 'libosmesa6-dev', 'libxmu6', 'libxmu-dev', 'libglu1-mesa-dev', 'libgles2-mesa-dev', 'libegl1-mesa-dev', 'libdbus-1-dev', 'libharfbuzz-dev', 'ccache', 'clang', 'autoconf2.13', "libunwind-dev"] pkgs_dnf = ['libtool', 'gcc-c++', 'libXi-devel', 'freetype-devel', |