From 6f517779a49e4281b5e56c2b1700fbcc721bfb2a Mon Sep 17 00:00:00 2001 From: Roman Lacko Date: Tue, 30 Apr 2013 15:11:56 +0200 Subject: Fixed python 3.3 libs search on linux --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b3b0be69d..13ee5ee86 100644 --- a/setup.py +++ b/setup.py @@ -336,7 +336,7 @@ class pyside_build(_build): lib_suff = getattr(sys, 'abiflags', None) else: # Python 2 lib_suff = dbgPostfix - lib_exts.append('.so.1') + lib_exts.append('.so.1') lib_exts.append('.a') # static library as last gasp libs_tried = [] for lib_ext in lib_exts: -- cgit v1.2.3