From 55ac585745a10c4feeb822d4109748374b83169c Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 12 Feb 2019 19:02:51 +0100 Subject: [PATCH] makewheel: exclude libdrm.so.2 which causes GLX context failure --- doc/ReleaseNotes | 1 + makepanda/makewheel.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/ReleaseNotes b/doc/ReleaseNotes index 108111071c..181b1eedab 100644 --- a/doc/ReleaseNotes +++ b/doc/ReleaseNotes @@ -4,6 +4,7 @@ This is a bugfix release intended to fix several issues in 1.10.0. * Fix crashes when gamepad is plugged in on 32-bit Windows * Fix deploy-ng error regarding 'exist_ok' on Python 2 +* Fix Linux install from pip not working with some mesa drivers * Fix compatibility issues with upcoming Python 3.8 * Fix regression with Audio3DManager.setSoundVelocityAuto() * Fix issues when awaiting loader.loadModel in Python 3.7 diff --git a/makepanda/makewheel.py b/makepanda/makewheel.py index 6dd2b32ef4..71f7ae945b 100644 --- a/makepanda/makewheel.py +++ b/makepanda/makewheel.py @@ -104,7 +104,7 @@ MANYLINUX_LIBS = [ # These are not mentioned in manylinux1 spec but should nonetheless always # be excluded. - "linux-vdso.so.1", "linux-gate.so.1", "ld-linux.so.2", + "linux-vdso.so.1", "linux-gate.so.1", "ld-linux.so.2", "libdrm.so.2", ] # Binaries to never scan for dependencies on non-Windows systems.