summaryrefslogtreecommitdiffstats
path: root/org.rtems.cdt/src/org/rtems/cdt/Activator.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.rtems.cdt/src/org/rtems/cdt/Activator.java')
-rw-r--r--org.rtems.cdt/src/org/rtems/cdt/Activator.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.rtems.cdt/src/org/rtems/cdt/Activator.java b/org.rtems.cdt/src/org/rtems/cdt/Activator.java
index 810e356..f9e8f35 100644
--- a/org.rtems.cdt/src/org/rtems/cdt/Activator.java
+++ b/org.rtems.cdt/src/org/rtems/cdt/Activator.java
@@ -32,15 +32,15 @@ import org.osgi.framework.BundleContext;
public class Activator extends AbstractUIPlugin {
private static Activator mPlugin;
- public void start( BundleContext context) throws Exception {
- super.start( context);
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
mPlugin = this;
createBSPInfoMakefile();
}
- public void stop( BundleContext context) throws Exception {
+ public void stop(BundleContext context) throws Exception {
mPlugin = null;
- super.stop( context);
+ super.stop(context);
}
public static Activator getDefault() {
@@ -52,10 +52,10 @@ public class Activator extends AbstractUIPlugin {
}
private void createBSPInfoMakefile() {
- IPath makefile = getMakefileLocation().append( "Makefile");
+ IPath makefile = getMakefileLocation().append("Makefile");
BufferedWriter out = null;
try {
- out = new BufferedWriter( new FileWriter( makefile.toFile()));
+ out = new BufferedWriter(new FileWriter(makefile.toFile()));
out.write(
"include $(" + Constants.BSP_PATH_MAKE_VARIABLE + ")/Makefile.inc\n"
+ "include $(RTEMS_CUSTOM)\n"