Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 263689 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/dsf/mi/service/command/commands/macos/MacOSMIEnvironmentCD.java (-1 / +1 lines)
Lines 17-22 Link Here
17
public class MacOSMIEnvironmentCD extends MIEnvironmentCD {
17
public class MacOSMIEnvironmentCD extends MIEnvironmentCD {
18
18
19
	public MacOSMIEnvironmentCD(ICommandControlDMContext ctx, String path) {
19
	public MacOSMIEnvironmentCD(ICommandControlDMContext ctx, String path) {
20
		super(ctx, '\"' + path + '\"');
20
		super(ctx, path.contains(" ") ? '\"' + path + '\"' : path); //$NON-NLS-1$
21
	}
21
	}
22
}
22
}

Return to bug 263689