mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fixed the bug in the CygwinPathResolver.resolveBuildPaths() method
This commit is contained in:
parent
c3e35e32e2
commit
954e809c34
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ public class CygwinPathResolver implements IBuildPathResolver {
|
|||
public String[] resolveBuildPaths(int pathType, String variableName,
|
||||
String variableValue, IConfiguration configuration) {
|
||||
|
||||
String[] result = variableName.split(DELIMITER_UNIX);
|
||||
String[] result = variableValue.split(DELIMITER_UNIX);
|
||||
if (!isWindows()) return result;
|
||||
String exePath = getBinPath();
|
||||
if (exePath == null) { return result; } // no changes
|
||||
|
|
Loading…
Add table
Reference in a new issue