diff options
author | CG Linden <cg@lindenlab.com> | 2009-12-24 11:46:25 -0800 |
---|---|---|
committer | CG Linden <cg@lindenlab.com> | 2009-12-24 11:46:25 -0800 |
commit | 7f335dbb8c8a7f10b03b4c97789ea271e0f906dd (patch) | |
tree | bb78a556ba75f7058b9f52941d10a6a9b207b681 /indra/develop.py | |
parent | 4efc8d9b6b6b095ebaa343cd72a5cb874e7636fd (diff) |
Use "strict" invocation of buildconsole according to Xoreax
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-x | indra/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py index 05ad12f20e..eaecdd0ab6 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -573,7 +573,7 @@ class WindowsSetup(PlatformSetup): if self.gens[self.generator]['ver'] in [ r'8.0', r'9.0' ]: config = '\"%s|Win32\"' % config - return "buildconsole %s.sln /build %s" % (self.project_name, config) + return "buildconsole %(prj)s.sln /build /cfg=%(cfg)s" % {'prj': self.project_name, 'cfg': config} # devenv.com is CLI friendly, devenv.exe... not so much. return ('"%sdevenv.com" %s.sln /build %s' % |