Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] MakeAction changes

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.2
diff -u -r1.2 ChangeLog
--- ChangeLog	11 Oct 2002 13:40:51 -0000	1.2
+++ ChangeLog	15 Oct 2002 17:55:56 -0000
@@ -13,3 +13,7 @@
 	over the code in the C/C++ Editor colour preference dialog.
 	From Thomas Fletcher.
 
+2002-10-15 David Inglis	
+	* MakeAction.java
+	Invoke builder as full build so that CBuilder is always invoked.
+		
Index: src/org/eclipse/cdt/internal/ui/makeview/MakeAction.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/makeview/MakeAction.java,v
retrieving revision 1.2
diff -u -r1.2 MakeAction.java
--- src/org/eclipse/cdt/internal/ui/makeview/MakeAction.java	21 Aug 2002 00:42:48 -0000	1.2
+++ src/org/eclipse/cdt/internal/ui/makeview/MakeAction.java	15 Oct 2002 17:55:56 -0000
@@ -104,10 +104,10 @@
 								if (target.isLeaf()) {
 									MakeUtil.setSessionTarget(project, target.toString());
 								}
-								//System.out.println ("Build0: " + res + " " + ta);
 							}
-							//System.out.println ("Build: " + project);
-							project.build (IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor);
+							// Full build to force builder for targets like clean and rebuild.
+							// maybe this should be a option
+							project.build (IncrementalProjectBuilder.FULL_BUILD, monitor);
 						} catch (CoreException e) {
 						} 
 

Back to the top