From: Sung Yoon Whang Date: Sat, 22 Feb 2020 03:52:49 +0000 (-0800) Subject: Fix CrstTypeTool to target the right header file on non-Windows platform (#32689) X-Git-Tag: submit/tizen/20210909.063632~9553 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=890c3b6ac0e7bb2fc9b4aa73201d417dd628b109;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix CrstTypeTool to target the right header file on non-Windows platform (#32689) --- diff --git a/src/coreclr/src/inc/CrstTypeTool.cs b/src/coreclr/src/inc/CrstTypeTool.cs index 788c7ef..f32ade2 100644 --- a/src/coreclr/src/inc/CrstTypeTool.cs +++ b/src/coreclr/src/inc/CrstTypeTool.cs @@ -65,7 +65,7 @@ class CrstTypeTool { // Calculate the filenames of the input and output files. string inputFile = "CrstTypes.def"; - string outputFile = "CrstTypes.h"; + string outputFile = "crsttypes.h"; // A common error is to forget to check out the CrstTypes.h file first. Handle this case specially // so we can give a good error message.