diff options
-rw-r--r-- | CMake/Misc.cmake | 2 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMake/Misc.cmake b/CMake/Misc.cmake index 79587b068..68ab22758 100644 --- a/CMake/Misc.cmake +++ b/CMake/Misc.cmake @@ -4,7 +4,7 @@ include(CheckCXXCompilerFlag) function(flatify target headers) foreach(header ${headers}) get_filename_component(tgt ${header} NAME) - configure_file(${header} ${target}/${tgt} @ONLY) + configure_file(${header} ${target}/${tgt} COPYONLY) endforeach(header ${headers}) endfunction() diff --git a/CMakeLists.txt b/CMakeLists.txt index 683869961..3263bea82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,7 +92,7 @@ if (NOT HAVE_STATVFS) if (NOT HAVE_VFS_H AND NOT HAVE_MOUNT_H) message(FATAL_ERROR "Can find neither statvfs() nor statfs()") endif() - configure_file(CMake/statvfs.h.in ${PROJECT_BINARY_DIR}/include/statvfs.h @ONLY) + configure_file(CMake/statvfs.h.in ${PROJECT_BINARY_DIR}/include/statvfs.h COPYONLY) endif() CHECK_STRUCT_HAS_MEMBER("struct statfs" f_type sys/vfs.h HAVE_STRUCT_STATFS_F_TYPE) |