This is an automated email from the ASF dual-hosted git repository. damjan pushed a commit to branch windows-amd64 in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 59efa0e13c6a467efe3824f24532619bb230dc9a Author: Damjan Jovanovic <dam...@apache.org> AuthorDate: Sat Jan 4 19:49:58 2025 +0200 Try not setting "-Xbootclasspath", as it doesn't work on Java > 8. Patch by: me --- main/scripting/java/build.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/main/scripting/java/build.xml b/main/scripting/java/build.xml index c521d0a560..bf36bbf5b9 100644 --- a/main/scripting/java/build.xml +++ b/main/scripting/java/build.xml @@ -124,12 +124,10 @@ debug="${debug}" optimize="${optimize}" deprecation="off"> <exclude name="**/provider/javascript/*.java" unless="with_rhino" /> <exclude name="**/provider/beanshell/*.java" unless="with_beanshell" /> - <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/> </javac> <javac srcdir="Framework/" destdir="${jardir}" includes="**/*.java" classpathref="idlclasspath" debug="${debug}" optimize="${optimize}" deprecation="off" includeantruntime="false"> - <compilerarg value="-Xbootclasspath:${toString:my.bootstrap.classpath}"/> </javac> </target>