[Tizen] fix for dotnet specific arguments in corerun
[platform/upstream/dotnet/runtime.git] / 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;