Fix concatenate_files macro

svn path=/trunk/; revision=52182
This commit is contained in:
Timo Kreuzer 2011-06-11 08:36:18 +00:00
parent 961c4ece37
commit 2df5334bfe

View file

@ -211,7 +211,7 @@ if(WIN32)
to_win_path("${_output}" _real_output)
add_custom_command(
OUTPUT ${_output}
COMMAND cmd.exe /C "copy /Y ${_real_file1} + ${_real_file2} ${_real_output}"
COMMAND cmd.exe /C "copy /Y /B ${_real_file1} + ${_real_file2} ${_real_output} > nul"
DEPENDS ${_file1}
DEPENDS ${_file2})
endmacro()