| Index: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
|
| diff --git a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
|
| index ab39f6e4e9f321ac2dd57c2a9f07fe57fe564c04..55dd8f067e219350b770d2a0f3abba38c1cf141e 100644
|
| --- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
|
| +++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
|
| @@ -44,7 +44,7 @@ namespace NaCl.Build.CPPTasks
|
| // assumes .o file is only possible file ending with 'o'
|
| if (path.ElementAt(path.Length - 1) != 'o' && path.ElementAt(path.Length - 1) != ':')
|
| {
|
| - string newDependency = GCCUtilities.Convert_Path_Posix_To_Windows(path);
|
| + string newDependency = GCCUtilities.ConvertPathPosixToWindows(path);
|
| m_dependencies.Add(newDependency);
|
| }
|
| }
|
|
|