[zorg] r233997 - Jenkins: fix a typo
Chris Matthews
cmatthews5 at apple.com
Thu Apr 2 19:14:51 PDT 2015
Author: cmatthews
Date: Thu Apr 2 21:14:51 2015
New Revision: 233997
URL: http://llvm.org/viewvc/llvm-project?rev=233997&view=rev
Log:
Jenkins: fix a typo
Modified:
zorg/trunk/zorg/jenkins/build.py
Modified: zorg/trunk/zorg/jenkins/build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/build.py?rev=233997&r1=233996&r2=233997&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Thu Apr 2 21:14:51 2015
@@ -122,7 +122,7 @@ def cmake_builder(target):
host_compiler_flags = []
if conf.CC():
host_compiler_flags.append('-DCMAKE_C_COMPILER=' + conf.CC())
- host_compiler_flags.append('-DCMAKE_CXX_COMPOLER=' + conf.CC()+"++")
+ host_compiler_flags.append('-DCMAKE_CXX_COMPILER=' + conf.CC()+"++")
type_flag = "-DCMAKE_BUILD_TYPE=Debug" if conf.debug else \
"-DCMAKE_BUILD_TYPE=Release"
More information about the llvm-commits
mailing list