From 0d0840de0e9039e3e5b2fd3261b8ed2b5efba567 Mon Sep 17 00:00:00 2001 From: "Mark Palange (Mani)" Date: Thu, 1 Oct 2009 14:51:35 -0700 Subject: Routing mt.exe output to NUL to hopefully fix expected error build failures... --- indra/lib/python/indra/util/test_win32_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra') diff --git a/indra/lib/python/indra/util/test_win32_manifest.py b/indra/lib/python/indra/util/test_win32_manifest.py index 0a2ebc48d4..0149b9f43a 100644 --- a/indra/lib/python/indra/util/test_win32_manifest.py +++ b/indra/lib/python/indra/util/test_win32_manifest.py @@ -91,7 +91,7 @@ def test_assembly_binding(src_filename, assembly_name, assembly_ver): resource_id = "" if os.path.splitext(src_filename)[1].lower() == ".dll": resource_id = ";#2" - system_call = '%s -nologo -inputresource:%s%s -out:%s' % (mt_path, src_filename, resource_id, tmp_file_name) + system_call = '%s -nologo -inputresource:%s%s -out:%s > NUL' % (mt_path, src_filename, resource_id, tmp_file_name) print "Executing: %s" % system_call mt_result = os.system(system_call) if mt_result == 31: -- cgit v1.2.3