diff options
author | Steven Knight <knight@baldmt.com> | 2009-11-27 16:41:56 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-11-27 16:41:56 (GMT) |
commit | ee2f1238343fd876d97ce8336bdc1df0c329d185 (patch) | |
tree | 731e32ae53e924bbe6221acbab4a700cfe4954da /src/engine/SCons/Tool/MSCommon/vc.py | |
parent | edef30d679f36f061634e85440151f7e95f5db18 (diff) | |
download | SCons-ee2f1238343fd876d97ce8336bdc1df0c329d185.zip SCons-ee2f1238343fd876d97ce8336bdc1df0c329d185.tar.gz SCons-ee2f1238343fd876d97ce8336bdc1df0c329d185.tar.bz2 |
Add a compat module for the (Python 2.3) platform.py module so that tests
using early Python versions work correctly, and without relying on the
QMTest infrastructure adding the installed Python version's directories
to sys.path.
Diffstat (limited to 'src/engine/SCons/Tool/MSCommon/vc.py')
-rw-r--r-- | src/engine/SCons/Tool/MSCommon/vc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine/SCons/Tool/MSCommon/vc.py b/src/engine/SCons/Tool/MSCommon/vc.py index 4f2cae0..7ccb207 100644 --- a/src/engine/SCons/Tool/MSCommon/vc.py +++ b/src/engine/SCons/Tool/MSCommon/vc.py @@ -34,6 +34,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" __doc__ = """Module for Visual C/C++ detection and configuration. """ +import SCons.compat import os import platform |