ports/java/eclipse-devel/files/patch-plugins-org.eclipse.osgi-build.xml
Greg Lewis 9cb8a6d230 . Add new patch files missed in the previous commit.
Submitted by:	Stephane Potvin (maintainer)
Pointy hat to:	greglew
2008-10-14 15:27:07 +00:00

25 lines
1.1 KiB
XML

--- plugins/org.eclipse.osgi/build.xml.orig 2008-09-29 19:38:37.000000000 -0400
+++ plugins/org.eclipse.osgi/build.xml 2008-09-29 19:39:37.000000000 -0400
@@ -16,7 +16,13 @@
<property name="compilerArg" value=""/>
<property name="javacSource" value="1.3"/>
<property name="javacTarget" value="1.2"/>
- <property name="bundleBootClasspath" value="osgi/exceptions.jar;osgi/xmlParserAPIs.jar;${CDC-1.0/Foundation-1.0}"/>
+ <property name="dir_bootclasspath" value="${java.home}/lib"/>
+ <path id="path_bootclasspath">
+ <fileset dir="${dir_bootclasspath}">
+ <include name="*.jar"/>
+ </fileset>
+ </path>
+ <property name="bootclasspath" refid="path_bootclasspath"/>
<condition property="bundleJavacSource" value="1.3" >
<isset property="CDC-1.0/Foundation-1.0"/>
</condition>
@@ -37,6 +43,7 @@
</condition>
<property name="bundleJavacSource" value="${javacSource}"/>
<property name="bundleJavacTarget" value="${javacTarget}"/>
+ <property name="bundleBootClasspath" value="${bootclasspath}"/>
<target name="init" depends="properties">
<condition property="pluginTemp" value="${buildTempFolder}/plugins" >