From a2527e941abc8cf5677492a9b0efca30b3f49d03 Mon Sep 17 00:00:00 2001 From: Juan Hoyos Date: Wed, 15 Apr 2020 20:03:45 -0700 Subject: [PATCH] Prevent 'in' folder from being created in output directory (#34979) --- eng/native/functions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/native/functions.cmake b/eng/native/functions.cmake index 9a50149..b7f8f46 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 $ DESTINATION ${destination}) -- 2.7.4