Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Hoyos <juan.hoyos@microsoft.com>2020-04-16 06:03:45 +0300
committerGitHub <noreply@github.com>2020-04-16 06:03:45 +0300
commita2527e941abc8cf5677492a9b0efca30b3f49d03 (patch)
tree4fd589c7b0ec9136d20da97974590ddf15ccfa07 /eng/native
parent8f8cfd446db5227d2685b7c0fe63084c776019ff (diff)
Prevent 'in' folder from being created in output directory (#34979)
Diffstat (limited to 'eng/native')
-rw-r--r--eng/native/functions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/native/functions.cmake b/eng/native/functions.cmake
index 9a5014917ec..b7f8f463804 100644
--- a/eng/native/functions.cmake
+++ b/eng/native/functions.cmake
@@ -338,7 +338,7 @@ function(install_clr)
if (NOT DEFINED CLR_CROSS_COMPONENTS_LIST OR NOT ${INDEX} EQUAL -1)
strip_symbols(${targetName} symbol_file)
- foreach(destination in ${destinations})
+ foreach(destination ${destinations})
# We don't need to install the export libraries for our DLLs
# since they won't be directly linked against.
install(PROGRAMS $<TARGET_FILE:${targetName}> DESTINATION ${destination})