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

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java (-5 / +7 lines)
Lines 236-255 Link Here
236
			}
236
			}
237
			String root = split[2];
237
			String root = split[2];
238
			StringBuffer buffer = new StringBuffer();
238
			StringBuffer buffer = new StringBuffer();
239
			buffer.append("scm:cvs:"); //$NON-NLS-1$
239
			buffer.append("scm:cvs"); //$NON-NLS-1$
240
			buffer.append(sep);
240
			buffer.append(protocol);
241
			buffer.append(protocol);
241
			buffer.append(':');
242
			buffer.append(sep);
242
			buffer.append(host);
243
			buffer.append(host);
243
			buffer.append(':');
244
			buffer.append(sep);
244
			buffer.append(root);
245
			buffer.append(root);
245
246
246
			buffer.append(':');
247
			buffer.append(sep);
247
			buffer.append(module);
248
			buffer.append(module);
248
249
249
			Path modulePath = new Path(module);
250
			Path modulePath = new Path(module);
250
			if (!modulePath.lastSegment().equals(projectName)) {
251
			if (!modulePath.lastSegment().equals(projectName)) {
251
				buffer.append(";project="); //$NON-NLS-1$
252
				buffer.append(";project=\""); //$NON-NLS-1$
252
				buffer.append(projectName);
253
				buffer.append(projectName);
254
				buffer.append('"');
253
			}
255
			}
254
256
255
			if (tagName != null) {
257
			if (tagName != null) {

Return to bug 243582