Skip to content

Commit

Permalink
Fix bug in Linux version of the generate execution script
Browse files Browse the repository at this point in the history
  • Loading branch information
trylek committed Apr 15, 2020
1 parent e853b88 commit 04cdc19
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/coreclr/tests/src/CLRTest.CrossGen.targets
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,14 @@ if [ ! -z ${RunCrossGen2+x} ]%3B then
fi
fi
__OutputFile="$PWD/"
if [ ! -z ${CompositeBuildMode+x} ]%3B then
__OutputFile=$PWD/composite-r2r.dll
__OutputFile+="composite-r2r.dll"
else
__OutputFile=$PWD/$(MSBuildProjectName).dll
__OutputFile+="$(MSBuildProjectName).dll"
fi
__ResponseFile="$(__OutputFile).rsp"
__ResponseFile="$__OutputFile.rsp"
rm $__ResponseFile
__Command=$_DebuggerFullPath
Expand All @@ -100,7 +101,7 @@ if [ ! -z ${RunCrossGen2+x} ]%3B then
echo -r:$PWD/IL/*.dll>>$__ResponseFile
fi
echo -o:$(__OutputFile)>>$__ResponseFile
echo -o:$__OutputFile>>$__ResponseFile
echo -r:$CORE_ROOT/System.*.dll>>$__ResponseFile
echo -r:$CORE_ROOT/Microsoft.*.dll>>$__ResponseFile
echo -r:$CORE_ROOT/mscorlib.dll>>$__ResponseFile
Expand Down

0 comments on commit 04cdc19

Please sign in to comment.