[Tizen] fix for dotnet specific arguments in corerun
authorGleb Balykov <g.balykov@samsung.com>
Fri, 14 Oct 2022 14:21:39 +0000 (17:21 +0300)
committer이형주/Common Platform Lab(SR)/삼성전자 <leee.lee@samsung.com>
Mon, 17 Oct 2022 01:42:47 +0000 (10:42 +0900)
src/coreclr/hosts/corerun/corerun.cpp

index b3f2c86..b377b0f 100644 (file)
@@ -534,7 +534,7 @@ static bool parse_args(
         // Tizen/armel. So we need to skip dotnet specific arguments, we patch corerun for it because
         // Microsoft.DotNet.RemoteExecutor tries to execute binary that it gets from /proc/self/maps, so we
         // need a binary that will behave like dotnet.
-        else if (pal::strcmp(option, W("--runtimeconfig")) == 0 || pal::strcmp(option, W("--depsfile")) == 0)
+        else if (pal::strcmp(option, W("runtimeconfig")) == 0 || pal::strcmp(option, W("depsfile")) == 0)
         {
             i++;
             continue;