mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-27 01:30:35 +08:00
C: fix generation of relative path in 'include' directive
This commit is contained in:
parent
da22256c1f
commit
a1aa25afa0
@ -39,7 +39,7 @@ public abstract class IncludeManager {
|
||||
while (true) {
|
||||
int next = fileName.indexOf('/', commonIndex);
|
||||
if (next < 0 || next > currentFileName.length()
|
||||
|| !currentFileName.regionMatches(commonIndex, fileName, commonIndex, next - commonIndex)) {
|
||||
|| !currentFileName.regionMatches(commonIndex, fileName, commonIndex, next - commonIndex + 1)) {
|
||||
break;
|
||||
}
|
||||
commonIndex = next + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user