Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
simplify osx_archs trimming
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11575 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
kyngchaos committed Sep 5, 2009
1 parent 1402f57 commit 4ef06ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/configure.py.in
Expand Up @@ -15,8 +15,7 @@ if sys.platform == 'darwin':
qt_libs.append("QtSql")
# possibility of universal build of bindings, if more than 1 arch
osx_archs = '@CMAKE_OSX_ARCHITECTURES@'
if osx_archs and osx_archs [-1] == ';' :
osx_archs = osx_archs [:-1]
osx_archs = osx_archs.strip(';')
if osx_archs.count(';') > 0:
osx_universal = '@CMAKE_OSX_SYSROOT@'
else:
Expand Down

0 comments on commit 4ef06ea

Please sign in to comment.