eclipse/eclipse-osgi-classpath.patch

18 lines
812 B
Diff

--- plugins/org.eclipse.osgi/build.xml.sav 2009-03-04 16:14:31.000000000 +0100
+++ plugins/org.eclipse.osgi/build.xml 2009-03-04 16:23:41.000000000 +0100
@@ -16,7 +16,13 @@
<property name="compilerArg" value=""/>
<property name="bundleJavacSource" value="1.3"/>
<property name="bundleJavacTarget" value="1.2"/>
- <property name="bundleBootClasspath" value="osgi/exceptions.jar;osgi/xmlParserAPIs.jar;${CDC-1.1/Foundation-1.1}"/>
+ <property name="dir_bootclasspath" value="${java.home}/lib"/>
+ <path id="path_bootclasspath">
+ <fileset dir="${dir_bootclasspath}">
+ <include name="*.jar"/>
+ </fileset>
+ </path>
+ <property name="bundleBootClasspath" refid="path_bootclasspath"/>
<target name="init" depends="properties">
<condition property="pluginTemp" value="${buildTempFolder}/plugins" >