makewheel: exclude libdrm.so.2 which causes GLX context failure

This commit is contained in:
rdb 2019-02-12 19:02:51 +01:00
parent 094458a8df
commit 55ac585745
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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.