Merge topic 'fix-test-CMakeELF-read-only-source'

a293dcb5 Tests: Fix CMake.ELF test with read-only source (#15489)
This commit is contained in:
Brad King 2015-04-02 12:57:31 -04:00 committed by CMake Topic Stage
commit e6caa47fa6
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ set(out "@CMAKE_CURRENT_BINARY_DIR@/ELF-Out")
file(REMOVE_RECURSE "${out}")
file(MAKE_DIRECTORY "${out}")
foreach(f ${names})
file(COPY ${in}/${f} DESTINATION ${out})
file(COPY ${in}/${f} DESTINATION ${out} NO_SOURCE_PERMISSIONS)
list(APPEND files "${out}/${f}")
endforeach()