summaryrefslogtreecommitdiffstats
path: root/webkit/build/rule_binding.py
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/build/rule_binding.py')
-rwxr-xr-xwebkit/build/rule_binding.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/build/rule_binding.py b/webkit/build/rule_binding.py
index df54710..ab74f0d 100755
--- a/webkit/build/rule_binding.py
+++ b/webkit/build/rule_binding.py
@@ -73,7 +73,9 @@ def main(args):
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.
+ 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