We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1402f57 commit 4ef06eaCopy full SHA for 4ef06ea
python/configure.py.in
@@ -15,8 +15,7 @@ if sys.platform == 'darwin':
15
qt_libs.append("QtSql")
16
# possibility of universal build of bindings, if more than 1 arch
17
osx_archs = '@CMAKE_OSX_ARCHITECTURES@'
18
- if osx_archs and osx_archs [-1] == ';' :
19
- osx_archs = osx_archs [:-1]
+ osx_archs = osx_archs.strip(';')
20
if osx_archs.count(';') > 0:
21
osx_universal = '@CMAKE_OSX_SYSROOT@'
22
else:
0 commit comments