mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Fix for the core part of the [Bug 179169] Build variables don't stick
This commit is contained in:
parent
d9128568c0
commit
d171f334bc
1 changed files with 6 additions and 0 deletions
|
@ -450,6 +450,12 @@ public class CConfigurationSpecSettings implements ICSettingsStorage{
|
|||
if(fIsModified)
|
||||
return true;
|
||||
|
||||
if(fMacros != null && fMacros.isDirty())
|
||||
return true;
|
||||
|
||||
if(fEnvironment != null && fEnvironment.isDirty())
|
||||
return true;
|
||||
|
||||
return fExtSettingsProvider.isModified();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue