mirror of
https://gitlab.com/ita1024/waf.git
synced 2025-01-11 02:45:18 +01:00
Issue 1098
This commit is contained in:
parent
00fda9dc84
commit
cdb339213b
@ -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
|
||||
|
@ -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')
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user