diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-05-12 19:08:55 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-05-12 19:08:55 (GMT) |
commit | 1d0d856ede1adca42d190ef4a9532df70961da8e (patch) | |
tree | 2067e14075151ddef40d98fe44a136d904f21850 /src | |
parent | 170105963ce92f49eeb7441739b921198dec0505 (diff) | |
download | SCons-1d0d856ede1adca42d190ef4a9532df70961da8e.zip SCons-1d0d856ede1adca42d190ef4a9532df70961da8e.tar.gz SCons-1d0d856ede1adca42d190ef4a9532df70961da8e.tar.bz2 |
fix whitespace in generated dsp file to match expected in test harness. Editor or 2to3 was chopping trailing space
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Tool/msvs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/SCons/Tool/msvs.py b/src/engine/SCons/Tool/msvs.py index c3c8164..6df4928 100644 --- a/src/engine/SCons/Tool/msvs.py +++ b/src/engine/SCons/Tool/msvs.py @@ -550,16 +550,16 @@ V6DSPHeader = """\ CFG=%(name)s - Win32 %(confkey)s !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run -!MESSAGE +!MESSAGE !MESSAGE NMAKE /f "%(name)s.mak". -!MESSAGE +!MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE +!MESSAGE !MESSAGE NMAKE /f "%(name)s.mak" CFG="%(name)s - Win32 %(confkey)s" -!MESSAGE +!MESSAGE !MESSAGE Possible choices for configuration are: -!MESSAGE +!MESSAGE """ class _GenerateV6DSP(_DSPGenerator): |