From 2f7215e37a1060249ac12531ec2cbaf4db38fa17 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tom=C3=A1=C5=A1=20Rylek?= Date: Thu, 6 Aug 2020 18:39:42 +0200 Subject: [PATCH] Fix several typos in bash script generation for Crossgen2 (#40417) --- src/coreclr/tests/src/CLRTest.CrossGen.targets | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/coreclr/tests/src/CLRTest.CrossGen.targets b/src/coreclr/tests/src/CLRTest.CrossGen.targets index 3fd4b4a..96a8233 100644 --- a/src/coreclr/tests/src/CLRTest.CrossGen.targets +++ b/src/coreclr/tests/src/CLRTest.CrossGen.targets @@ -86,10 +86,10 @@ if [ ! -z ${RunCrossGen2+x} ]%3B then __ResponseFile="$__OutputFile.rsp" rm $__ResponseFile - // Suppress the GC stress COMPlus for the duration of Crossgen2 execution - local gcStressModeToRestore = $COMPlus_GCStress; - local heapVerifyModeToRestore = $COMPlus_HeapVerify; - local readyToRunModeToRestore = $COMPlus_ReadyToRun; + # Suppress the GC stress COMPlus for the duration of Crossgen2 execution + local gcStressModeToRestore=$COMPlus_GCStress; + local heapVerifyModeToRestore=$COMPlus_HeapVerify; + local readyToRunModeToRestore=$COMPlus_ReadyToRun; export COMPlus_GCStress= export COMPlus_HeapVerify= export COMPlus_ReadyToRun= @@ -127,7 +127,7 @@ if [ ! -z ${RunCrossGen2+x} ]%3B then } if [ ! -z ${CompositeBuildMode+x} ]%3B then - ExtraCrossGen2Args+= --composite + ExtraCrossGen2Args+=" --composite" OneFileCrossgen2 "$PWD/composite-r2r.dll" "$PWD/IL/*.dll" else ExtraCrossGen2Args+= -r:$PWD/IL/*.dll -- 2.7.4