diff options
-rwxr-xr-x | iclm | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -63,6 +63,13 @@ proc tryCompile { } { -re "Error .*?: (.*)\.dcl could not be imported" { tryImport $expect_out(1,string) return + } -re "Can't find (.*)\.icl\.icl" { + set argv [lmap arg $argv { + regsub -- {.icl} $arg {} arg + set arg + }] + tryCompile + return } -re "Can't find (.*)\.icl" { tryImport $expect_out(1,string) return |