From cdecab9cc43550bab5a33dbcb51f88effb92bcd2 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 4 Nov 2013 21:54:58 +0000 Subject: [PATCH] Bugfix: Do not try to inject a "\n\t" into xml files git-svn-id: https://svn.dealii.org/trunk@31540 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/scripts/run_testsuite.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/cmake/scripts/run_testsuite.cmake b/deal.II/cmake/scripts/run_testsuite.cmake index f8b2d09d41..a3becde061 100644 --- a/deal.II/cmake/scripts/run_testsuite.cmake +++ b/deal.II/cmake/scripts/run_testsuite.cmake @@ -565,7 +565,7 @@ Unable to determine test submission files from TAG. Bailing out. ENDIF() FILE(GLOB _xml_files ${_path}/*.xml) EXECUTE_PROCESS(COMMAND sed -i -e - s/CompilerName=\"\"/CompilerName=\"${_compiler_name}\"\\n\\tCompilerVersion=\"${_compiler_version}\"/g + s/CompilerName=\"\"/CompilerName=\"${_compiler_name}\" CompilerVersion=\"${_compiler_version}\"/g ${_xml_files} OUTPUT_QUIET RESULT_VARIABLE _res ) -- 2.39.5