Chromium Code Reviews| Index: webkit/build/rule_binding.py |
| =================================================================== |
| --- webkit/build/rule_binding.py (revision 19909) |
| +++ webkit/build/rule_binding.py (working copy) |
| @@ -73,7 +73,9 @@ |
| for include_dir in include_dirs: |
| command.extend(['-I', include_dir]) |
| command.append(generate_bindings) |
| - command.extend(options) |
| + # Remove any qouble qoutes that may have gotten in here. We know that none of |
| + # the options will have meaningful double qoutes. |
|
Ben Laurie
2009/07/06 16:11:20
To defend against the possibility of a define that
|
| + command.extend([option.replace('"', '') for option in options]) |
| command.extend(['--outputDir', cppdir, input]) |
| # Do it. check_call is new in 2.5, so simulate its behavior with call and |