fixed reloading output paths settings if 'inherit compiler output' is enabled

This commit is contained in:
nik
2015-05-20 19:59:38 +03:00
parent fd128c383f
commit e62f2ed0db
@@ -283,13 +283,11 @@ public class CompilerModuleExtensionImpl extends CompilerModuleExtension {
return true;
}
if (!myInheritedCompilerOutput) {
if (!vptrEqual(myCompilerOutputPointer, mySource.myCompilerOutputPointer)) {
return true;
}
if (!vptrEqual(myCompilerOutputPathForTestsPointer, mySource.myCompilerOutputPathForTestsPointer)) {
return true;
}
if (!vptrEqual(myCompilerOutputPointer, mySource.myCompilerOutputPointer)) {
return true;
}
if (!vptrEqual(myCompilerOutputPathForTestsPointer, mySource.myCompilerOutputPathForTestsPointer)) {
return true;
}
return myExcludeOutput != mySource.myExcludeOutput;