diff options
-rw-r--r-- | src/engine/SCons/Tool/swig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/swig.py b/src/engine/SCons/Tool/swig.py index 1fe0461..c473b10 100644 --- a/src/engine/SCons/Tool/swig.py +++ b/src/engine/SCons/Tool/swig.py @@ -68,8 +68,7 @@ def _find_modules(src): except IOError: # If the file's not yet generated, guess the module name from the filename matches = [] - # TODO(1.5): += - mnames = mnames + [os.path.splitext(src)[0]] + mnames.append(os.path.splitext(src)[0]) for m in matches: mnames.append(m[2]) |