diff options
author | Thibault Saunier <tsaunier@gnome.org> | 2014-10-26 15:50:32 +0100 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2014-10-26 16:02:52 +0100 |
commit | e36cf3e441ecb564d8520bc1429bf6c68b5be778 (patch) | |
tree | 2a88e80792307dfb98ee9708f7a41f7b71d5ab47 | |
parent | fe258cab9dbf8dd3d1622841f6e974a22cb77757 (diff) |
bootstrap: Do not forget to install libglu1-mesa-dev on debian
It is needed to build the opengl plugins.
-rw-r--r-- | cerbero/bootstrap/linux.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cerbero/bootstrap/linux.py b/cerbero/bootstrap/linux.py index 1d213642..73c04103 100644 --- a/cerbero/bootstrap/linux.py +++ b/cerbero/bootstrap/linux.py @@ -50,7 +50,8 @@ class DebianBootstrapper (UnixBootstrapper): 'libxml-simple-perl', 'dpkg-dev', 'debhelper', 'build-essential', 'devscripts', 'fakeroot', 'transfig', 'gperf', 'libdbus-glib-1-dev', 'wget', 'glib-networking', - 'libxtst-dev', 'libxrandr-dev', 'libbonobo2-dev'] + 'libxtst-dev', 'libxrandr-dev', 'libbonobo2-dev', + 'libglu1-mesa-dev'] distro_packages = { DistroVersion.DEBIAN_SQUEEZE: ['libgtk2.0-dev'], DistroVersion.UBUNTU_MAVERICK: ['libgtk2.0-dev'], |