mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 13:15:44 +02:00
Merge remote-tracking branch 'cdt/master' into sd90
This commit is contained in:
commit
2aadaa0262
5 changed files with 23 additions and 8 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2012-04-11 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
Bug #375007 fix from Anna Dushistova
|
||||||
|
* src/org/eclipse.cdt/internal/autotools/core/AutotoolsNewMakeGenerator.java
|
||||||
|
(getConfigurePath): If configure command is specified as absolute
|
||||||
|
path, just use it.
|
||||||
|
|
||||||
2012-03-30 Jeff Johnston <jjohnstn@redhat.com>
|
2012-03-30 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
Bug #371277
|
Bug #371277
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Red Hat Inc..
|
* Copyright (c) 2009, 2012 Red Hat Inc.and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Red Hat Incorporated - initial API and implementation
|
* Red Hat Incorporated - initial API and implementation
|
||||||
|
* Anna Dushistova (MontaVista)- [375007] [autotools] allow absolute paths for configure scripts
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.internal.autotools.core;
|
package org.eclipse.cdt.internal.autotools.core;
|
||||||
|
|
||||||
|
@ -753,10 +754,15 @@ public class AutotoolsNewMakeGenerator extends MarkerGenerator {
|
||||||
for (int i = 1; i < tokens.length; ++i)
|
for (int i = 1; i < tokens.length; ++i)
|
||||||
cmdParms.add(tokens[i]);
|
cmdParms.add(tokens[i]);
|
||||||
}
|
}
|
||||||
if (srcDir.equals(""))
|
if (Path.fromOSString(command).isAbsolute()) {
|
||||||
configPath = project.getLocation().append(command);
|
configPath = new Path(command);
|
||||||
else
|
} else {
|
||||||
configPath = project.getLocation().append(srcDir).append(command);
|
if (srcDir.equals(""))
|
||||||
|
configPath = project.getLocation().append(command);
|
||||||
|
else
|
||||||
|
configPath = project.getLocation().append(srcDir)
|
||||||
|
.append(command);
|
||||||
|
}
|
||||||
return configPath;
|
return configPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ ToggleInstructionStepModeAction.tooltip=Instruction Stepping Mode
|
||||||
ShowDebuggerConsoleAction.label=Show Debugger Console
|
ShowDebuggerConsoleAction.label=Show Debugger Console
|
||||||
ShowDebuggerConsoleAction.tooltip=Show Debugger Console On Target Selection
|
ShowDebuggerConsoleAction.tooltip=Show Debugger Console On Target Selection
|
||||||
|
|
||||||
AddBreakpoint.label=Toggle &Breakpoint\tDouble Click
|
AddBreakpoint.label=Toggle Brea&kpoint
|
||||||
AddBreakpointInteractive.label=&Add Breakpoint...\tCtrl+Double Click
|
AddBreakpointInteractive.label=&Add Breakpoint...\tCtrl+Double Click
|
||||||
EnableBreakpoint.label=&Toggle Breakpoint Enabled\tShift+Double Click
|
EnableBreakpoint.label=&Toggle Breakpoint Enabled\tShift+Double Click
|
||||||
BreakpointProperties.label=Breakpoint P&roperties...
|
BreakpointProperties.label=Breakpoint P&roperties...
|
||||||
|
|
|
@ -450,6 +450,7 @@
|
||||||
label="%AddBreakpoint.label"
|
label="%AddBreakpoint.label"
|
||||||
helpContextId="manage_breakpoint_action_context"
|
helpContextId="manage_breakpoint_action_context"
|
||||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CRulerToggleBreakpointActionDelegate"
|
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CRulerToggleBreakpointActionDelegate"
|
||||||
|
definitionId="org.eclipse.debug.ui.commands.ToggleBreakpoint"
|
||||||
menubarPath="debug"
|
menubarPath="debug"
|
||||||
id="org.eclipse.cdt.debug.ui.actions.RulerToggleBreakpointAction">
|
id="org.eclipse.cdt.debug.ui.actions.RulerToggleBreakpointAction">
|
||||||
</action>
|
</action>
|
||||||
|
@ -528,6 +529,7 @@
|
||||||
label="%AddBreakpoint.label"
|
label="%AddBreakpoint.label"
|
||||||
helpContextId="manage_breakpoint_action_context"
|
helpContextId="manage_breakpoint_action_context"
|
||||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CRulerToggleBreakpointActionDelegate"
|
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CRulerToggleBreakpointActionDelegate"
|
||||||
|
definitionId="org.eclipse.debug.ui.commands.ToggleBreakpoint"
|
||||||
menubarPath="debug"
|
menubarPath="debug"
|
||||||
id="org.eclipse.cdt.debug.ui.actions.asm.RulerToggleBreakpointAction">
|
id="org.eclipse.cdt.debug.ui.actions.asm.RulerToggleBreakpointAction">
|
||||||
</action>
|
</action>
|
||||||
|
|
|
@ -132,4 +132,4 @@ RetargetResumeAtLineAction.0=The operation is unavailable on the current selecti
|
||||||
CAddBreakpointInteractiveRulerAction_label=&Add Breakpoint...\tCtrl+Double Click
|
CAddBreakpointInteractiveRulerAction_label=&Add Breakpoint...\tCtrl+Double Click
|
||||||
CAddBreakpointInteractiveRulerAction_error_title=Error
|
CAddBreakpointInteractiveRulerAction_error_title=Error
|
||||||
CAddBreakpointInteractiveRulerAction_error_message=Unable to create breakpoint
|
CAddBreakpointInteractiveRulerAction_error_message=Unable to create breakpoint
|
||||||
CRulerToggleBreakpointActionDelegate_label=Toggle Brea&kpoint\tDouble Click
|
CRulerToggleBreakpointActionDelegate_label=Toggle Brea&kpoint
|
||||||
|
|
Loading…
Add table
Reference in a new issue