summaryrefslogtreecommitdiffstats
path: root/webkit/build
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/build')
-rwxr-xr-xwebkit/build/rule_binding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/build/rule_binding.py b/webkit/build/rule_binding.py
index 96040ee..df54710 100755
--- a/webkit/build/rule_binding.py
+++ b/webkit/build/rule_binding.py
@@ -74,7 +74,7 @@ def main(args):
command.extend(['-I', include_dir])
command.append(generate_bindings)
command.extend(options)
- command.extend(['--outputdir', cppdir, input])
+ command.extend(['--outputDir', cppdir, input])
# Do it. check_call is new in 2.5, so simulate its behavior with call and
# assert.