diff options
author | Zachary Turner <zturner@google.com> | 2015-11-24 22:27:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-24 22:27:02 +0000 |
commit | f6a30d31724d0326fc2c7f64a4dd1dfd0d8d9e04 (patch) | |
tree | e3d4573146cd197cd085b75b27e6b2b23fd08635 /lldb/scripts/prepare_bindings.py | |
parent | a7e09c6221ec84bde65d377b6710cdcddfc055f6 (diff) | |
download | bcm5719-llvm-f6a30d31724d0326fc2c7f64a4dd1dfd0d8d9e04.tar.gz bcm5719-llvm-f6a30d31724d0326fc2c7f64a4dd1dfd0d8d9e04.zip |
Fix build after swig_bot_lib changes.
llvm-svn: 254033
Diffstat (limited to 'lldb/scripts/prepare_bindings.py')
-rwxr-xr-x | lldb/scripts/prepare_bindings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/prepare_bindings.py b/lldb/scripts/prepare_bindings.py index f6c47ff084d..0a0721157f1 100755 --- a/lldb/scripts/prepare_bindings.py +++ b/lldb/scripts/prepare_bindings.py @@ -77,7 +77,7 @@ def prepare_all_bindings(options): if os.path.isdir(os.path.join(scripts_dir, f))] # Remove directories that do not represent script languages. - for removal_dir in [".svn", "interface", "__pycache__", "sphinx"]: + for removal_dir in [".svn", "interface", "__pycache__", "sphinx", "swig_bot_lib"]: if removal_dir in child_dirs: child_dirs.remove(removal_dir) |