Skip to content
Snippets Groups Projects
Commit 63e2d184 authored by Kent Quirk's avatar Kent Quirk
Browse files

automerge

parents c0ae5bb9 1df3ef87
No related branches found
No related tags found
No related merge requests found
...@@ -77,15 +77,13 @@ def find_vc_dir(): ...@@ -77,15 +77,13 @@ def find_vc_dir():
def find_mt_path(): def find_mt_path():
vc_dir = find_vc_dir() vc_dir = find_vc_dir()
print "Found vc_dir: %s" % vc_dir mt_path = '\"%sbin\\mt.exe\"' % vc_dir
mt_path = '\"%s\\VC\\bin\\mt.exe\"' % vc_dir
return mt_path return mt_path
def test_assembly_binding(src_filename, assembly_name, assembly_ver): def test_assembly_binding(src_filename, assembly_name, assembly_ver):
print "checking %s dependency %s..." % (src_filename, assembly_name) print "checking %s dependency %s..." % (src_filename, assembly_name)
(tmp_file_fd, tmp_file_name) = tempfile.mkstemp(suffix='.xml') (tmp_file_fd, tmp_file_name) = tempfile.mkstemp(suffix='.xml')
print tmp_file_name
tmp_file = os.fdopen(tmp_file_fd) tmp_file = os.fdopen(tmp_file_fd)
tmp_file.close() tmp_file.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment