From: maier Date: Tue, 28 Jan 2014 13:29:02 +0000 (+0000) Subject: Testsuite: Bugfix: Do not copy CMakeCache.txt and CMakeFiles for build tests X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb3e0999681a5f1651dbac19f8a66b2bfd0f3cb1;p=dealii-svn.git Testsuite: Bugfix: Do not copy CMakeCache.txt and CMakeFiles for build tests git-svn-id: https://svn.dealii.org/trunk@32332 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/tests/build_tests/CMakeLists.txt b/deal.II/tests/build_tests/CMakeLists.txt index 02318b6259..1c7a815469 100644 --- a/deal.II/tests/build_tests/CMakeLists.txt +++ b/deal.II/tests/build_tests/CMakeLists.txt @@ -67,7 +67,7 @@ FOREACH(_step_full ${_steps}) FILE(GLOB _files ${_step_full}/*) SET(_command) FOREACH(_file ${_files}) - IF(NOT _file MATCHES "/(doc|.svn)") + IF(NOT _file MATCHES "/(CMakeCache.txt|CMakeFiles|doc|.svn)") LIST(APPEND _command COMMAND ${CMAKE_COMMAND} -E copy ${_file} ${_step_dir} )