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 158589
Collapse All | Expand All

(-)src/org/eclipse/pde/internal/build/builder/ClasspathComputer3_0.java (-1 / +5 lines)
Lines 295-301 Link Here
295
		if ("jar".equalsIgnoreCase(basePath.getFileExtension())) { //$NON-NLS-1$
295
		if ("jar".equalsIgnoreCase(basePath.getFileExtension())) { //$NON-NLS-1$
296
			path = basePath.toOSString();
296
			path = basePath.toOSString();
297
		} else {
297
		} else {
298
			path = basePath.append(libraryName).toString();
298
			Path libraryPath = new Path(libraryName);
299
			if (libraryPath.isAbsolute())
300
				path = libraryPath.toOSString();
301
			else
302
				path = basePath.append(libraryPath).toString();
299
		}
303
		}
300
		path = generator.replaceVariables(path, pluginId == null ? false : generator.getCompiledElements().contains(pluginId));
304
		path = generator.replaceVariables(path, pluginId == null ? false : generator.getCompiledElements().contains(pluginId));
301
		String secondaryPath = null;
305
		String secondaryPath = null;

Return to bug 158589