summaryrefslogtreecommitdiff
path: root/indra/lib
diff options
context:
space:
mode:
authorMark Palange (Mani) <palange@lindenlab.com>2009-10-01 14:51:35 -0700
committerMark Palange (Mani) <palange@lindenlab.com>2009-10-01 14:51:35 -0700
commit0d0840de0e9039e3e5b2fd3261b8ed2b5efba567 (patch)
tree933052af4e0d895a13b09e59944760dd7dde918a /indra/lib
parent45c053b87dbadc2eb968a96c91116dc8845ced55 (diff)
Routing mt.exe output to NUL to hopefully fix expected error build failures...
Diffstat (limited to 'indra/lib')
-rw-r--r--indra/lib/python/indra/util/test_win32_manifest.py2
1 files changed, 1 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 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: