Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Applied [HEAD] Re: [cdt-patch] MBS bug fix - [Bug 78047] [MBS] Build all results in a 'clean all'


Appears to solve the problem on my machine. Thanks, Leo.
 
Sean Evoy
Rational Software - IBM Software Group
Ottawa, Ontario, Canada



"Treggiari, Leo" <leo.treggiari@xxxxxxxxx>
Sent by: cdt-patch-admin@xxxxxxxxxxx

11/08/2004 01:44 PM

Please respond to
cdt-patch

To
<cdt-patch@xxxxxxxxxxx>
cc
Subject
[cdt-patch] MBS bug fix - [Bug 78047] [MBS] Build all results in a 'clean all'





The patch is attached.  Note that the patch includes changes from my patch from this weekend, since this change is in one of the same files.  The only new change in this patch is in the routine ManagedBuildInfo.setRebuildState.
 
            public void setRebuildState(boolean rebuild) {
@@ -822,7 +863,9 @@
                        rebuildNeeded = rebuild;
                        // TODO:  Is the appropriate?  Should the rebuild state be stored in the project file?
                        // and in the managed project
-                       //managedProject.setRebuildNeeded(rebuild);
+                      if (getDefaultConfiguration() != null) {
+                                  getDefaultConfiguration().setRebuildState(rebuild);
+                      }
            }
 
 
Regards,
Leo
 [attachment "patch.txt" deleted by Sean Evoy/Ottawa/IBM]

Back to the top