mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
when using external build do not validate configuration of old compilers
This commit is contained in:
@@ -2516,10 +2516,12 @@ public class CompileDriver {
|
||||
}
|
||||
}
|
||||
}
|
||||
final Compiler[] allCompilers = compilerManager.getCompilers(Compiler.class);
|
||||
for (Compiler compiler : allCompilers) {
|
||||
if (!compiler.validateConfiguration(scope)) {
|
||||
return false;
|
||||
if (!useOutOfProcessBuild()) {
|
||||
final Compiler[] allCompilers = compilerManager.getCompilers(Compiler.class);
|
||||
for (Compiler compiler : allCompilers) {
|
||||
if (!compiler.validateConfiguration(scope)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user