diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-06-25 23:51:23 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-06-27 15:21:09 -0400 |
commit | 3c2fa1767b452a3445068a2806886c90bacbf543 (patch) | |
tree | 8cf862f57f648921d2ce453129d16bdf14485008 | |
parent | ed6611a588e2f21be60db11dc75f69e40500ea1f (diff) | |
download | rneovim-3c2fa1767b452a3445068a2806886c90bacbf543.tar.gz rneovim-3c2fa1767b452a3445068a2806886c90bacbf543.tar.bz2 rneovim-3c2fa1767b452a3445068a2806886c90bacbf543.zip |
cmake: Make `make lint` less verbose
It unnecessarily complicates spotting linter errors, as they're usually
surrounded by a bunch of lines saying "Done processing ... ".
-rwxr-xr-x | clint.py | 2 | ||||
-rw-r--r-- | cmake/RunLint.cmake | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -3070,8 +3070,6 @@ def ProcessFile(filename, vlevel, extra_check_functions=[]): 'One or more unexpected \\r (^M) found;' 'better to use only a \\n') - sys.stderr.write('Done processing %s\n' % filename) - def PrintUsage(message): """Prints a brief usage string and exits, optionally with an error message. 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() |