diff options
| -rwxr-xr-x | indra/develop.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/indra/develop.py b/indra/develop.py index a1e8f59c5d..2dd7b39410 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -544,11 +544,11 @@ class WindowsSetup(PlatformSetup):          PlatformSetup.run_cmake(self, args)          if self.unattended == 'OFF':              for build_dir in self.build_dirs(): -                vstool_cmd = os.path.join('tools','vstool','VSTool.exe') \ -                             + ' --solution ' \ -                             + os.path.join(build_dir,'SecondLife.sln') \ -                             + ' --config RelWithDebInfo' \ -                             + ' --startup secondlife-bin' +                vstool_cmd = (os.path.join('tools','vstool','VSTool.exe') + +                              ' --solution ' + +                              os.path.join(build_dir,'SecondLife.sln') + +                              ' --config ' + self.build_type + +                              ' --startup secondlife-bin')                  print 'Running %r in %r' % (vstool_cmd, getcwd())                  self.run(vstool_cmd)         | 
