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 293704 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/make/ui/dialogs/MakeTargetDialog.java (-6 / +4 lines)
Lines 384-395 Link Here
384
		targetNameText.selectAll();
384
		targetNameText.selectAll();
385
		if (buildCommand != null) {
385
		if (buildCommand != null) {
386
			StringBuffer cmd = new StringBuffer(buildCommand.toOSString());
386
			StringBuffer cmd = new StringBuffer(buildCommand.toOSString());
387
			if (!isDefaultCommand) {
387
			String args = buildArguments;
388
				String args = buildArguments;
388
			if (args != null && !args.equals("")) { //$NON-NLS-1$
389
				if (args != null && !args.equals("")) { //$NON-NLS-1$
389
				cmd.append(" "); //$NON-NLS-1$
390
					cmd.append(" "); //$NON-NLS-1$
390
				cmd.append(args);
391
					cmd.append(args);
392
				}
393
			}
391
			}
394
			commandText.setText(cmd.toString());
392
			commandText.setText(cmd.toString());
395
		}
393
		}

Return to bug 293704