Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 51197 Details for
Bug 158589
Export deployable plugins/features wizards fails with target plugins imported
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
pde build patch
bug 158589.txt (text/plain), 1.12 KB, created by
Brian Bauman
on 2006-09-29 15:53:14 EDT
(
hide
)
Description:
pde build patch
Filename:
MIME Type:
Creator:
Brian Bauman
Created:
2006-09-29 15:53:14 EDT
Size:
1.12 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.pde.build >Index: src/org/eclipse/pde/internal/build/builder/ClasspathComputer3_0.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/builder/ClasspathComputer3_0.java,v >retrieving revision 1.38 >diff -u -r1.38 ClasspathComputer3_0.java >--- src/org/eclipse/pde/internal/build/builder/ClasspathComputer3_0.java 8 May 2006 15:18:35 -0000 1.38 >+++ src/org/eclipse/pde/internal/build/builder/ClasspathComputer3_0.java 29 Sep 2006 19:48:51 -0000 >@@ -295,7 +295,11 @@ > if ("jar".equalsIgnoreCase(basePath.getFileExtension())) { //$NON-NLS-1$ > path = basePath.toOSString(); > } else { >- path = basePath.append(libraryName).toString(); >+ Path libraryPath = new Path(libraryName); >+ if (libraryPath.isAbsolute()) >+ path = libraryPath.toOSString(); >+ else >+ path = basePath.append(libraryPath).toString(); > } > path = generator.replaceVariables(path, pluginId == null ? false : generator.getCompiledElements().contains(pluginId)); > String secondaryPath = null;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 158589
: 51197