diff options
| author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-10-30 18:53:38 +0000 | 
|---|---|---|
| committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-10-30 18:53:38 +0000 | 
| commit | 4c38e5820a20a5c4cd30f2c9d39352f323c5d3ef (patch) | |
| tree | c46dc3c2e79023d2b7a12578b30946490f67de5c | |
| parent | 1f3e44d0e69b6d37d224f818ae328ce6b6dc4ccb (diff) | |
When running vstool from develop.py, use the correct build type.
| -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)         | 
