From e662b303f5d7ab38fe750cff1f89b5953ba8fa9f Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 1 Jun 2017 13:45:45 +0200 Subject: Fix .so filter for Linux Previously, libpyside.so would not match .so.* and so, the libraries were not copied. Task-number: PYSIDE-526 Change-Id: I407db564beaee1f443dc7b816bc0bf798c8aacf1 Reviewed-by: Christian Tismer Reviewed-by: Edward Welbourne --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a2741d53d..ce309fe34 100644 --- a/setup.py +++ b/setup.py @@ -927,7 +927,7 @@ class pyside_build(_build): executables = [] if sys.platform.startswith('linux'): so_ext = '.so' - so_star = so_ext + '.*' + so_star = so_ext + '*' elif sys.platform == 'darwin': so_ext = '.dylib' so_star = so_ext -- cgit v1.2.3