Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-07-01 21:15:12 +0000
committerAlexander Kurtakov2020-07-01 21:15:12 +0000
commitb7142ce8158719c9b4258a2bc666e0b3c58ba373 (patch)
treea48122ec629134ffe019889d5d960bde2bf23ab2
parent59d2f6a31b3a3f9d051f5cc34a70438c04f82cd2 (diff)
downloadeclipse.platform.swt-b7142ce8158719c9b4258a2bc666e0b3c58ba373.tar.gz
eclipse.platform.swt-b7142ce8158719c9b4258a2bc666e0b3c58ba373.tar.xz
eclipse.platform.swt-b7142ce8158719c9b4258a2bc666e0b3c58ba373.zip
Remove bootclasspath setting from ant build.
Not needed as --release is used. Change-Id: Idc6cb994631b816185139634238509438a8788ff Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/buildFragment.xml12
1 files changed, 1 insertions, 11 deletions
diff --git a/bundles/org.eclipse.swt/buildFragment.xml b/bundles/org.eclipse.swt/buildFragment.xml
index c26efab320..50fa3b1838 100644
--- a/bundles/org.eclipse.swt/buildFragment.xml
+++ b/bundles/org.eclipse.swt/buildFragment.xml
@@ -29,16 +29,6 @@
<property name="javacVerbose" value="false" />
<property name="logExtension" value=".xml" />
<property name="javacRelease" value="8" />
- <condition property="bootclasspath" value="">
- <equals arg1="${swt.os}" arg2="macosx"/>
- </condition>
- <path id="path_bootclasspath">
- <fileset dir="${java.home}/lib">
- <include name="*.jar" />
- </fileset>
- </path>
- <property name="bootclasspath" refid="path_bootclasspath" />
- <property name="bundleBootClasspath" value="${bootclasspath}" />
<condition property="p2.publish.parts" value="true">
<istrue value="${p2.gathering}" />
</condition>
@@ -67,7 +57,7 @@
<delete dir="${temp.folder}/@dot.bin" />
<mkdir dir="${temp.folder}/@dot.bin" />
<antcall target="copy.${swt.ws}.src"/>
- <javac destdir="${temp.folder}/@dot.bin" verbose="${javacVerbose}" debug="${debug}" failonerror="yes" bootclasspath="${bundleBootClasspath}" release="${javacRelease}" includeantruntime="false">
+ <javac destdir="${temp.folder}/@dot.bin" verbose="${javacVerbose}" debug="${debug}" failonerror="yes" release="${javacRelease}" includeantruntime="false">
<src path="${temp.folder}/@dot.src/"/>
<compilerarg line="-log '${temp.folder}'/@dot.bin${logExtension}" compiler="org.eclipse.jdt.core.JDTCompilerAdapter" />
<compilerarg line="${compilerArg}" compiler="org.eclipse.jdt.core.JDTCompilerAdapter" />

Back to the top