2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 03:09:30 +01:00
This commit is contained in:
Matt Selsky 2017-08-03 00:43:50 -04:00 committed by ita1024
parent bef2cf13ec
commit 06f0390992
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ def build(bld):
install_from = 'src') install_from = 'src')
# The bar module has a non-Python dependency to resource.txt which we want to copy, # The bar module has a non-Python dependency to resource.txt which we want to copy,
# but in this case we cannot add resource.txt to the sources because there's not feature # but in this case we cannot add resource.txt to the sources because there's no feature
# for it. Therefore, we use the attribute buildcopy_source instead. # for it. Therefore, we use the attribute buildcopy_source instead.
bld(name = 'bar', bld(name = 'bar',
features = 'py buildcopy', features = 'py buildcopy',

View File

@ -240,7 +240,7 @@ def validate_cfg(self, kw):
@conf @conf
def exec_cfg(self, kw): def exec_cfg(self, kw):
""" """
Executes ``pkg-config`` or other ``-config`` applications to colect configuration flags: Executes ``pkg-config`` or other ``-config`` applications to collect configuration flags:
* if atleast_pkgconfig_version is given, check that pkg-config has the version n and return * if atleast_pkgconfig_version is given, check that pkg-config has the version n and return
* if modversion is given, then return the module version * if modversion is given, then return the module version

View File

@ -287,7 +287,7 @@ class PBXGroup(XCodeNode):
Recursively search this group for an existing PBXFileReference. Returns None Recursively search this group for an existing PBXFileReference. Returns None
if none were found. if none were found.
The reason you'd want to reuse existing PBXFileReferences from a PBXGroup is that XCode doesn't like PBXFileReferences that aren't part of a PBXGroup heirarchy. The reason you'd want to reuse existing PBXFileReferences from a PBXGroup is that XCode doesn't like PBXFileReferences that aren't part of a PBXGroup hierarchy.
If it isn't, the consequence is that certain UI features like 'Reveal in Finder' If it isn't, the consequence is that certain UI features like 'Reveal in Finder'
stops working. stops working.
""" """