aboutsummaryrefslogtreecommitdiff
path: root/cmake/RunLint.cmake
diff options
context:
space:
mode:
authorMichael Reed <Pyrohh@users.noreply.github.com>2015-06-27 15:22:31 -0400
committerMichael Reed <Pyrohh@users.noreply.github.com>2015-06-27 15:22:31 -0400
commit3ec0ede3a805df1a107a0d68220cde1beeeba386 (patch)
tree8cf862f57f648921d2ce453129d16bdf14485008 /cmake/RunLint.cmake
parent0cfadce547d78c72cc6214cbe647993721b0eba8 (diff)
parent3c2fa1767b452a3445068a2806886c90bacbf543 (diff)
downloadrneovim-3ec0ede3a805df1a107a0d68220cde1beeeba386.tar.gz
rneovim-3ec0ede3a805df1a107a0d68220cde1beeeba386.tar.bz2
rneovim-3ec0ede3a805df1a107a0d68220cde1beeeba386.zip
Merge pull request #2904 from Pyrohh/clint
[RFC] clint.py stuff Reviewed-by: Florian Walch <florian@fwalch.com>
Diffstat (limited to 'cmake/RunLint.cmake')
-rw-r--r--cmake/RunLint.cmake2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmake/RunLint.cmake b/cmake/RunLint.cmake
index 35d3f942aa..a6d5a01b50 100644
--- a/cmake/RunLint.cmake
+++ b/cmake/RunLint.cmake
@@ -5,9 +5,7 @@ file(GLOB_RECURSE LINT_FILES ${LINT_DIR}/*.c ${LINT_DIR}/*.h)
if(LINT_IGNORE_FILE)
file(READ ${LINT_IGNORE_FILE} LINT_IGNORED_FILES)
string(REPLACE "\n" ";" LINT_IGNORED_FILES ${LINT_IGNORED_FILES})
- message(STATUS "Ignoring the following files for linting:")
foreach(ignore_file ${LINT_IGNORED_FILES})
- message(STATUS "${ignore_file}")
list(REMOVE_ITEM LINT_FILES "${LINT_PREFIX}/${ignore_file}")
endforeach()
endif()