[Lldb-commits] [lldb] r254033 - Fix build after swig_bot_lib changes.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 24 14:27:02 PST 2015


Author: zturner
Date: Tue Nov 24 16:27:02 2015
New Revision: 254033

URL: http://llvm.org/viewvc/llvm-project?rev=254033&view=rev
Log:
Fix build after swig_bot_lib changes.

Modified:
    lldb/trunk/scripts/prepare_bindings.py

Modified: lldb/trunk/scripts/prepare_bindings.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/prepare_bindings.py?rev=254033&r1=254032&r2=254033&view=diff
==============================================================================
--- lldb/trunk/scripts/prepare_bindings.py (original)
+++ lldb/trunk/scripts/prepare_bindings.py Tue Nov 24 16:27:02 2015
@@ -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)
 




More information about the lldb-commits mailing list