Fix wrong var name in r4486, thanks Greg!
authorgaryo <garyo@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 26 Nov 2009 22:09:23 +0000 (22:09 +0000)
committergaryo <garyo@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 26 Nov 2009 22:09:23 +0000 (22:09 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@4487 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/engine/SCons/Tool/MSCommon/vc.py

index dfedbdee71da4fd1a6fae24c3190c8ddb11a9920..4f2cae01a60896666ed881276dfde1208e4789fb 100644 (file)
@@ -331,8 +331,8 @@ def msvc_setup_env(env):
         host_platform, target_platform = get_host_target(env)
         host_target = (host_platform, target_platform)
         if not is_host_target_supported(host_target, version):
-            msg = "host, target = %s not supported for MSVC version %s" % \
-                    (host_target, version)
+            warn_msg = "host, target = %s not supported for MSVC version %s" % \
+                (host_target, version)
             SCons.Warnings.warn(SCons.Warnings.VisualCMissingWarning, warn_msg)
         arg = _HOST_TARGET_ARCH_TO_BAT_ARCH[host_target]
         debug('use_script 2 %s, args:%s\n' % (repr(script), arg))