[llvm-commits] [llvm] r113746 - /llvm/trunk/test/lit.cfg
Duncan Sands
baldrick at free.fr
Mon Sep 13 06:32:22 PDT 2010
Author: baldrick
Date: Mon Sep 13 08:32:22 2010
New Revision: 113746
URL: http://llvm.org/viewvc/llvm-project?rev=113746&view=rev
Log:
Spelling fixes in comments.
Modified:
llvm/trunk/test/lit.cfg
Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=113746&r1=113745&r2=113746&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Mon Sep 13 08:32:22 2010
@@ -45,22 +45,22 @@
config.environment['PATH']))
config.environment['PATH'] = path
-# Propogate 'HOME' through the environment.
+# Propagate 'HOME' through the environment.
if 'HOME' in os.environ:
config.environment['HOME'] = os.environ['HOME']
-# Propogate 'INCLUDE' through the environment.
+# Propagate 'INCLUDE' through the environment.
if 'INCLUDE' in os.environ:
config.environment['INCLUDE'] = os.environ['INCLUDE']
-# Propogate 'LIB' through the environment.
+# Propagate 'LIB' through the environment.
if 'LIB' in os.environ:
config.environment['LIB'] = os.environ['LIB']
-# Propogate LLVM_SRC_ROOT into the environment.
+# Propagate LLVM_SRC_ROOT into the environment.
config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '')
-# Propogate PYTHON_EXEUTABLE into the environment
+# Propagate PYTHON_EXECUTABLE into the environment
config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
'')
More information about the llvm-commits
mailing list