1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Bug 301706: Mac OS: Debugger can not handle file paths with spaces.

This commit is contained in:
Mikhail Khodjaiants 2010-02-04 12:21:43 +00:00
parent 687fffa793
commit d81756f82e

View file

@ -1,5 +1,5 @@
/**********************************************************************
* Copyright (c) 2006 Nokia and others.
* Copyright (c) 2006, 2010 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -7,6 +7,7 @@
*
* Contributors:
* Nokia - Initial API and implementation
* Marc-Andre Laperle - fix for bug 263689 (spaces in directory)
***********************************************************************/
package org.eclipse.cdt.debug.mi.core.command.factories.macos;
@ -16,13 +17,15 @@ public class MacOSMIEnvironmentCD extends MIEnvironmentCD {
public MacOSMIEnvironmentCD(String miVersion, String path) {
super(miVersion, path);
this.setOperation("cd");//$NON-NLS-1$
this.setOperation("-environment-cd");//$NON-NLS-1$
}
protected String parametersToString() {
String[] parameters = getParameters();
if (parameters != null && parameters.length == 1) {
return '"' + parameters[0] + '"';
// To handle spaces in the path, the command string has this format:
// -environment-cd "\"/path with spaces\""
return "\"\\\"" + parameters[0] + "\\\"\""; //$NON-NLS-1$ //$NON-NLS-2$
}
return super.parametersToString();
}