Skip to content

Commit

Permalink
merge_libs.py: fixes Windows breakage: there should be no space after…
Browse files Browse the repository at this point in the history
… "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
  • Loading branch information
henrike@webrtc.org committed Jul 29, 2014
1 parent 51c5508 commit 1e7d60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webrtc/build/merge_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e7d60e

Please sign in to comment.