merge_libs.py: fixes Windows breakage: there should be no space after "lib /OUT:".

TBR=andrew@webrtc.org
BUG=b/15773179

Review URL: https://webrtc-codereview.appspot.com/16999004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6793 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrike@webrtc.org 2014-07-29 04:45:23 +00:00
parent 51c5508bf1
commit 1e7d60e451

View File

@ -78,7 +78,7 @@ def main(argv):
' -and -not -name '.join(IGNORE_PATTERNS) +
' -exec', cmd, output_lib, '{} +'])
else:
cmd = ' '.join([cmd, output_lib] + FindFiles(search_path, pattern))
cmd = ' '.join([cmd + output_lib] + FindFiles(search_path, pattern))
print cmd
subprocess.check_call(cmd, shell=True)
return 0