[zorg] r188783 - [llvmlab] Fixed typo in LibCXXBuilder.

Michael Gottesman mgottesman at apple.com
Tue Aug 20 02:41:52 PDT 2013


Author: mgottesman
Date: Tue Aug 20 04:41:52 2013
New Revision: 188783

URL: http://llvm.org/viewvc/llvm-project?rev=188783&view=rev
Log:
[llvmlab] Fixed typo in LibCXXBuilder.

Modified:
    zorg/trunk/zorg/buildbot/builders/LibCXXBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/LibCXXBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LibCXXBuilder.py?rev=188783&r1=188782&r2=188783&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LibCXXBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LibCXXBuilder.py Tue Aug 20 04:41:52 2013
@@ -17,7 +17,7 @@ reload(artifacts)
 reload(phased_builder_utils)
 
 def getLibCXXBuilder(f=None, source_path=None,
-                     lit_path=None):
+                     lit_dir=None):
     if f is None:
         f = buildbot.process.factory.BuildFactory()
         # Find the build directory. We assume if f is passed in that the build
@@ -58,7 +58,7 @@ def getLibCXXBuilder(f=None, source_path
               env={ 'CC' : CC, 'CXX' : CXX, 'TRIPLE' : '-apple-'}))
 
     # Get the 'lit' sources if we need to.
-    if lit_path is None:
+    if lit_dir is None:
         lit_dir = 'lit.src'
         f.addStep(svn.SVN(
             name='pull.lit', mode='incremental', method='fresh',





More information about the llvm-commits mailing list