mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 03:53:21 +02:00
fixed bug #76412
This commit is contained in:
parent
0f08850bec
commit
1307a5b905
1 changed files with 5 additions and 2 deletions
|
@ -244,9 +244,12 @@ public class BuildInfoFactory {
|
|||
if (escapeChars.indexOf(envStr.charAt(ndx)) != -1) {
|
||||
if (envStr.charAt(ndx - 1) == escapeChar) { // escaped '|' - remove '\' and continue on.
|
||||
envStr.deleteCharAt(ndx - 1);
|
||||
} else {
|
||||
break;
|
||||
if (ndx == envStr.length()) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (envStr.charAt(ndx) == '|')
|
||||
break;
|
||||
}
|
||||
ndx++;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue