From dc6f09e404c68b9a4ce52cc9dd29f48d80ab2f9f Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 27 Sep 2010 01:13:38 +0000 Subject: [PATCH] Bug 315796: Use proper "7.2" version string for GDB 7.2 --- .../eclipse/cdt/dsf/gdb/service/GdbDebugServicesFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GdbDebugServicesFactory.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GdbDebugServicesFactory.java index 6f7ed6045eb..2e3a29bfcd7 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GdbDebugServicesFactory.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/service/GdbDebugServicesFactory.java @@ -47,7 +47,7 @@ public class GdbDebugServicesFactory extends AbstractDsfDebugServicesFactory { // This should eventually be "7.0" once GDB 7.0 is released private static final String GDB_7_0_VERSION = "6.8.50.20090218"; //$NON-NLS-1$ private static final String GDB_7_1_VERSION = "7.1"; //$NON-NLS-1$ - private static final String GDB_7_2_VERSION = "7.1.50"; //$NON-NLS-1$ + private static final String GDB_7_2_VERSION = "7.2"; //$NON-NLS-1$ private final String fVersion;