Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2018-11-16 11:24:36 +0000
committerJonah Graham2018-11-16 11:24:38 +0000
commit54f6c19de27012a9e7662ed5cfcbcf1377583bd6 (patch)
tree7ae6cdf30bbcce1a808ce42bb7b3133f4ad4afda /dsf-gdb/org.eclipse.cdt.dsf.gdb
parentb6c1a085d1dfa1579dfc23e160eb97fd4d620be3 (diff)
downloadorg.eclipse.cdt-54f6c19de27012a9e7662ed5cfcbcf1377583bd6.tar.gz
org.eclipse.cdt-54f6c19de27012a9e7662ed5cfcbcf1377583bd6.tar.xz
org.eclipse.cdt-54f6c19de27012a9e7662ed5cfcbcf1377583bd6.zip
Bug 541069: Don't error on missing variables when doing substitution
This is a follow up to 60d95da97b7b654d6346efd190aaef5211fc57ea (Bug 399460) as in that change the reporting option inadvertently changed. Change-Id: I1afe70632107ab388be09a707e8e9fc419f76b91
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.dsf.gdb')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunch.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunch.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunch.java
index 0d61bc7b28b..399df0a646d 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunch.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/launching/GdbLaunch.java
@@ -481,13 +481,13 @@ public class GdbLaunch extends DsfLaunch implements ITerminate, IDisconnect, ITr
}
if (gdb != null) {
IProject project = getProject();
- gdb = new DebugStringVariableSubstitutor(project).performStringSubstitution(gdb);
+ gdb = new DebugStringVariableSubstitutor(project).performStringSubstitution(gdb, false);
return new Path(gdb);
} else {
return null;
}
} catch (CoreException e) {
- GdbPlugin.log(e.getStatus());
+ GdbPlugin.log(e);
return null;
}
}

Back to the top