diff options
author | Chuck Linden <chuck@lindenlab.com> | 2010-02-17 18:47:45 -0500 |
---|---|---|
committer | Chuck Linden <chuck@lindenlab.com> | 2010-02-17 18:47:45 -0500 |
commit | 9dfff8c6d2a54e3f6e069c26cc8753dc9331aec1 (patch) | |
tree | 492fd1d140180792bdae2ed3b00765b367b5e2d3 /indra/lib | |
parent | 50e696872ecebd37e8a43df3031e4cdaf26147a9 (diff) | |
parent | 0aaaa06fe0149ffbc22823daa095749be1abe3e0 (diff) |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
Diffstat (limited to 'indra/lib')
-rw-r--r-- | indra/lib/python/indra/util/test_win32_manifest.py | 4 |
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() |