diff options
| author | Zachary Turner <zturner@google.com> | 2015-11-24 23:11:54 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-11-24 23:11:54 +0000 |
| commit | 933626229bd6fe8215fdb7414c1991e2d25ef8ca (patch) | |
| tree | 6c3523edc4ac027cca3a4edc542ebd373734119a /lldb/scripts | |
| parent | 3930361969ae2feb9be6a19bdf2b21ff9687fb9b (diff) | |
| download | bcm5719-llvm-933626229bd6fe8215fdb7414c1991e2d25ef8ca.tar.gz bcm5719-llvm-933626229bd6fe8215fdb7414c1991e2d25ef8ca.zip | |
Another hack to fix the build bot.
This script really should not be assuming every subdirectory is
a language directory for swig generation. Using a hack to get
this working for now, but this should be solved once this script
is re-written similar to how prepare_bindings was.
llvm-svn: 254037
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/finishSwigWrapperClasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/finishSwigWrapperClasses.py b/lldb/scripts/finishSwigWrapperClasses.py index b71fdecf933..20c066aa386 100644 --- a/lldb/scripts/finishSwigWrapperClasses.py +++ b/lldb/scripts/finishSwigWrapperClasses.py @@ -275,7 +275,7 @@ def run_post_process_for_each_script_supported(vDictArgs): # Iterate script directory find any script language directories for scriptLang in listDirs: # __pycache__ is a magic directory in Python 3 that holds .pyc files - if scriptLang != "__pycache__": + if scriptLang != "__pycache__" and scriptLang != "swig_bot_lib": dbg.dump_text("Executing language script for \'%s\'" % scriptLang) nResult, strStatusMsg = run_post_process(scriptLang, strFinishFileName, vDictArgs) |

