Skip to content
Snippets Groups Projects
Commit 092ee83c authored by Markus Blatt's avatar Markus Blatt
Browse files

Do not print an empty line if no files were found.

[[Imported from SVN: r6958]]
parent 68374939
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,7 @@ foreach(_file ${makefiles})
if(_testdir)
list(APPEND _makefiles ${_testdir})
endif(_testdir)
endforeach(_file ${_makefiles})
message("${_makefiles}")
endforeach(_file ${makefiles})
if(_makefiles)
message("${_makefiles}")
endif(_makefiles)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment