summaryrefslogtreecommitdiff
path: root/indra/lib
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-02-17 14:37:28 -0800
committerRichard Linden <none@none>2010-02-17 14:37:28 -0800
commit366aa236f2964855bcb6f8b95f52e8bdad902651 (patch)
treee87f1e40bd5c4f36b191d1d279aca7fec0b66edc /indra/lib
parenta383a38b0c1b5ae02cf8b8a3d5e6ccb3924b8766 (diff)
EXT-5461 - Installing 1.23.5 release version over recent 2.0 builds corrupts 1.23s UI
reviewed by Leyla
Diffstat (limited to 'indra/lib')
-rw-r--r--indra/lib/python/indra/util/test_win32_manifest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/lib/python/indra/util/test_win32_manifest.py b/indra/lib/python/indra/util/test_win32_manifest.py
index 0149b9f43a..6c59210294 100644
--- a/indra/lib/python/indra/util/test_win32_manifest.py
+++ b/indra/lib/python/indra/util/test_win32_manifest.py
@@ -77,13 +77,15 @@ def find_vc_dir():
def find_mt_path():
vc_dir = find_vc_dir()
- mt_path = '\"%sbin\\mt.exe\"' % vc_dir
+ print "Found vc_dir: %s" % vc_dir
+ mt_path = '\"%s\\VC\\bin\\mt.exe\"' % vc_dir
return mt_path
def test_assembly_binding(src_filename, assembly_name, assembly_ver):
print "checking %s dependency %s..." % (src_filename, assembly_name)
(tmp_file_fd, tmp_file_name) = tempfile.mkstemp(suffix='.xml')
+ print tmp_file_name
tmp_file = os.fdopen(tmp_file_fd)
tmp_file.close()