diff options
author | Sean Stangl <sean.stangl@gmail.com> | 2020-04-12 13:47:01 -0600 |
---|---|---|
committer | Sean Stangl <sean.stangl@gmail.com> | 2020-04-12 13:47:01 -0600 |
commit | 3ba621e7646fab28f5d3813da50f69c5e4c5db26 (patch) | |
tree | d5a898b36fbae87e301f63207a82e7b730bc59d3 /python/servo/bootstrap.py | |
parent | 3abbfdf2786124dbded7c9a616b4ad38f71a1708 (diff) | |
download | servo-3ba621e7646fab28f5d3813da50f69c5e4c5db26.tar.gz servo-3ba621e7646fab28f5d3813da50f69c5e4c5db26.zip |
Add 'python3-devel' to the DNF bootstrap packages list
Bootstrapping on Fedora 31 fails with a missing <Python.h> header.
That header is provided by the 'python3-devel' package.
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 fa8fa7488ed..43a8c6d9967 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -126,7 +126,7 @@ def linux(context, force=False): 'libXcursor-devel', 'libXmu-devel', 'mesa-libOSMesa-devel', 'dbus-devel', 'ncurses-devel', 'harfbuzz-devel', 'ccache', 'mesa-libGLU-devel', 'clang', 'clang-libs', 'gstreamer1-devel', - 'gstreamer1-plugins-base-devel', + 'gstreamer1-plugins-base-devel', 'python3-devel', 'gstreamer1-plugins-bad-free-devel', 'autoconf213'] if context.distro == "Ubuntu" and context.distro_version != "14.04": pkgs_apt += ['libgstreamer1.0-dev', 'libgstreamer-plugins-base1.0-dev', |