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
This commit is contained in:
Zachary Turner 2015-11-24 23:11:54 +00:00
parent 3930361969
commit 933626229b
1 changed files with 1 additions and 1 deletions

View File

@ -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)