diff --git a/indra/cmake/LLAddBuildTest.cmake b/indra/cmake/LLAddBuildTest.cmake
index dd49caaf20e27e2146d5d26358dc9cc7ce09fbfb..e8a0a949b6a2a566847bb0a63590c3f9e293a713 100644
--- a/indra/cmake/LLAddBuildTest.cmake
+++ b/indra/cmake/LLAddBuildTest.cmake
@@ -137,7 +137,7 @@ INCLUDE(GoogleMock)
     SET(TEST_OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/PROJECT_${project}_TEST_${name}_ok.txt)
     SET(TEST_CMD ${TEST_EXE} --touch=${TEST_OUTPUT} --sourcedir=${CMAKE_CURRENT_SOURCE_DIR})
 
-	# daveh - what configuration does this use? Debug? it's cmake-time, not build time. + poppy 2009-04-19
+    # daveh - what configuration does this use? Debug? it's cmake-time, not build time. + poppy 2009-04-19
     IF(LL_TEST_VERBOSE)
       MESSAGE(STATUS "LL_ADD_PROJECT_UNIT_TESTS ${name} test_cmd  = ${TEST_CMD}")
     ENDIF(LL_TEST_VERBOSE)
diff --git a/indra/cmake/LLSharedLibs.cmake b/indra/cmake/LLSharedLibs.cmake
index 009eeae7810484f50677184cc43961bec5f5a2a9..e29076c73882ddd43cab6b18845bdc6fbde313e2 100644
--- a/indra/cmake/LLSharedLibs.cmake
+++ b/indra/cmake/LLSharedLibs.cmake
@@ -8,18 +8,18 @@ macro(ll_deploy_sharedlibs_command target_exe)
     SET_TEST_PATH(SEARCH_DIRS)
     get_target_property(IS_BUNDLE ${target_exe} MACOSX_BUNDLE)
     if(IS_BUNDLE)
-	  # If its a bundle the exe is not in the target location, this should find it.
+      # If its a bundle the exe is not in the target location, this should find it.
       get_filename_component(TARGET_FILE ${TARGET_LOCATION} NAME)
       set(OUTPUT_PATH ${TARGET_LOCATION}.app/Contents/MacOS)
       set(TARGET_LOCATION ${OUTPUT_PATH}/${TARGET_FILE})
-	  set(OUTPUT_PATH ${OUTPUT_PATH}/../Resources)
+      set(OUTPUT_PATH ${OUTPUT_PATH}/../Resources)
     endif(IS_BUNDLE)
   elseif(WINDOWS)
     SET_TEST_PATH(SEARCH_DIRS)
     LIST(APPEND SEARCH_DIRS "$ENV{SystemRoot}/system32")
   elseif(LINUX)
     SET_TEST_PATH(SEARCH_DIRS)
-	set(OUTPUT_PATH ${OUTPUT_PATH}/lib)
+    set(OUTPUT_PATH ${OUTPUT_PATH}/lib)
   endif(DARWIN)
 
   add_custom_command(
@@ -50,7 +50,7 @@ macro(ll_stage_sharedlib DSO_TARGET)
       else(DARWIN)
         set(SHARED_LIB_STAGING_DIR_CONFIG ${SHARED_LIB_STAGING_DIR}/${CMAKE_CFG_INTDIR})
       endif(DARWIN)
-	  
+
       # *TODO - maybe make this a symbolic link? -brad
       add_custom_command(
         TARGET ${DSO_TARGET} POST_BUILD
diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt
index 955c77c041b1519358e5f8691cbfe08f83a7e365..66c78a86c4e8d3ba17e9c0ef952c4f24d4d44b8a 100644
--- a/indra/test/CMakeLists.txt
+++ b/indra/test/CMakeLists.txt
@@ -31,7 +31,7 @@ include_directories(
 
 set(test_SOURCE_FILES
     io.cpp
-#    llapp_tut.cpp						# Temporarily removed until thread issues can be solved
+#    llapp_tut.cpp                      # Temporarily removed until thread issues can be solved
     llblowfish_tut.cpp
     llbuffer_tut.cpp
     lldoubledispatch_tut.cpp