From 4a6d74a13122b763e99f97995fbbb1c6967769bb Mon Sep 17 00:00:00 2001 From: Lorenzo Villani Date: Mon, 16 Jun 2014 18:45:05 +0200 Subject: [PATCH] XCB: exclude only libxcb-dri --- PyInstaller/depend/dylib.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PyInstaller/depend/dylib.py b/PyInstaller/depend/dylib.py index faff771ff6..6fb8e4116c 100644 --- a/PyInstaller/depend/dylib.py +++ b/PyInstaller/depend/dylib.py @@ -89,10 +89,10 @@ r'/libutil\.so\..*': 1, # libGL can reference some hw specific libraries (like nvidia libs). r'/libGL\..*': 1, - # libxcb changes ABI frequently (e.g.: between Ubuntu LTS releases) and is - # usually installed as dependency of the graphics stack anyway. No need to - # bundle it. - r'/libxcb.*\.so\..*': 1, + # libxcb-dri changes ABI frequently (e.g.: between Ubuntu LTS releases) and is usually installed + # as dependency of the graphics stack anyway. No need to bundle it. + r'/libxcb\.so\..*': 1, + r'/libxcb-dri.*\.so\..*': 1, } _aix_excludes = {