diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-04-09 01:23:56 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-04-09 01:23:56 (GMT) |
commit | b5c465f6f0874bd27a85891536ac157b6dcbadbe (patch) | |
tree | a47b43a0a76244d41599de1a2c3fb39dff2e9b3a /src | |
parent | 937b081a09617398ceb0a8bcea6d09ccda3cbad4 (diff) | |
download | SCons-b5c465f6f0874bd27a85891536ac157b6dcbadbe.zip SCons-b5c465f6f0874bd27a85891536ac157b6dcbadbe.tar.gz SCons-b5c465f6f0874bd27a85891536ac157b6dcbadbe.tar.bz2 |
add docstring
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Tool/link.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/SCons/Tool/link.py b/src/engine/SCons/Tool/link.py index b7db947..07e9250 100644 --- a/src/engine/SCons/Tool/link.py +++ b/src/engine/SCons/Tool/link.py @@ -243,8 +243,10 @@ def _versioned_lib_callbacks(): 'VersionedLdModSoname' : _versioned_ldmod_soname, }.copy() -# Setup all variables required by the versioning machinery def _setup_versioned_lib_variables(env, **kw): + """ + Setup all variables required by the versioning machinery + """ tool = None try: tool = kw['tool'] |