commit | 2a1edacb1b49fc17729527d2bc8f829d5f03bb84 | [log] [tgz] |
---|---|---|
author | Darryl Green <darryl.green@arm.com> | Fri Jun 08 10:07:32 2018 +0100 |
committer | Darryl Green <darryl.green@arm.com> | Fri Jun 08 10:07:32 2018 +0100 |
tree | 391deec10dad1a91920a4edf4f46593a9f982cc6 | |
parent | d75ee64c1fba22d10e49a510e931cbe1fd6a3e00 [diff] [blame] |
Change symlink to hardlink to avoid permission issues
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7641491..b9a0ce0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -70,7 +70,7 @@ if (IS_DIRECTORY ${target}) set(command cmd.exe /c mklink /j ${link} ${target}) else() - set(command cmd.exe /c mklink ${link} ${target}) + set(command cmd.exe /c mklink /h ${link} ${target}) endif() endif()