[Lldb-commits] [lldb] r254037 - Another hack to fix the build bot.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 24 15:11:54 PST 2015


Author: zturner
Date: Tue Nov 24 17:11:54 2015
New Revision: 254037

URL: http://llvm.org/viewvc/llvm-project?rev=254037&view=rev
Log:
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.

Modified:
    lldb/trunk/scripts/finishSwigWrapperClasses.py

Modified: lldb/trunk/scripts/finishSwigWrapperClasses.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/finishSwigWrapperClasses.py?rev=254037&r1=254036&r2=254037&view=diff
==============================================================================
--- lldb/trunk/scripts/finishSwigWrapperClasses.py (original)
+++ lldb/trunk/scripts/finishSwigWrapperClasses.py Tue Nov 24 17:11:54 2015
@@ -275,7 +275,7 @@ def run_post_process_for_each_script_sup
     # 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)




More information about the lldb-commits mailing list