Issue 1098

This commit is contained in:
Thomas Nagy 2012-01-05 21:01:11 +01:00
parent 00fda9dc84
commit cdb339213b
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
NEW IN WAF 1.6.11
-----------------
* Apply the chmod attribute to the versioned libraries (vnum)
NEW IN WAF 1.6.10
-----------------
* Fixed the 'remove' attribute propagation in ant_glob #1086

View File

@ -156,7 +156,7 @@ def init_pyext(self):
@feature('pyext')
@before_method('apply_link', 'apply_bundle')
def set_bundle(self):
if Utils.unversioned_sys_platform == 'darwin':
if Utils.unversioned_sys_platform() == 'darwin':
self.mac_bundle = True
@before_method('propagate_uselib_vars')

View File

@ -522,7 +522,7 @@ def find_qt4_libraries(self):
except self.errors.ConfigurationError:
for i in self.qt4_vars:
uselib = i.upper()
if Utils.unversioned_sys_platform == "darwin":
if Utils.unversioned_sys_platform() == "darwin":
# Since at least qt 4.7.3 each library locates in separate directory
frameworkName = i + ".framework"
qtDynamicLib = os.path.join(qtlibs, frameworkName, i)