You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2022/02/13 16:18:53 UTC

[openoffice] branch AOO42X updated (ffea605 -> 33ef102)

This is an automated email from the ASF dual-hosted git repository.

ardovm pushed a change to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git.


    from ffea605  Fixed typos, removed whitespace
     new f8ab842  Create 'tmp' directory into solver
     new 33ef102  Add support for Azul and OpenJDK JDK's

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 main/scripting/java/build.xml | 6 +++++-
 main/solenv/bin/deliver.pl    | 1 +
 2 files changed, 6 insertions(+), 1 deletion(-)

[openoffice] 02/02: Add support for Azul and OpenJDK JDK's

Posted by ar...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ardovm pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 33ef10204446290fb4d407853d65294dda0b42b6
Author: Arrigo Marchiori <ar...@yahoo.it>
AuthorDate: Fri Feb 11 09:45:16 2022 +0100

    Add support for Azul and OpenJDK JDK's
    
    (cherry picked from commit 6b9dcf425c98079ba3243c445033c03406aeb447)
---
 main/scripting/java/build.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/main/scripting/java/build.xml b/main/scripting/java/build.xml
index db526af..c521d0a 100644
--- a/main/scripting/java/build.xml
+++ b/main/scripting/java/build.xml
@@ -91,7 +91,11 @@
       <os family="mac"/>
       <os family="unix"/>
       <contains string="${java.version}" substring="1.8" casesensitive="false" />
-      <contains string="${java.vendor}" substring="Oracle" casesensitive="false" /> 
+      <or>
+        <contains string="${java.vendor}" substring="Oracle" casesensitive="false" />
+        <contains string="${java.vendor}" substring="adoptopenjdk" casesensitive="false" />
+        <contains string="${java.vendor}" substring="azul" casesensitive="false" />
+      </or>
     </and>
   </condition>
 

[openoffice] 01/02: Create 'tmp' directory into solver

Posted by ar...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ardovm pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit f8ab842fac71cf4974cabc06eaca69b45be69374
Author: Arrigo Marchiori <ar...@yahoo.it>
AuthorDate: Thu Feb 10 14:51:57 2022 +0100

    Create 'tmp' directory into solver
    
    Completes f110f2132c033266ae9e2e1ff7ec2f29347b01ab
    
    (cherry picked from commit f76c88023642e2d81093a0f72c05e19cda1f23f3)
---
 main/solenv/bin/deliver.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/main/solenv/bin/deliver.pl b/main/solenv/bin/deliver.pl
index f4b9df4..497757b 100755
--- a/main/solenv/bin/deliver.pl
+++ b/main/solenv/bin/deliver.pl
@@ -1005,6 +1005,7 @@ sub push_default_actions
                     'pck',
                     'rdb',
                     'res',
+                    'tmp',
                     'xml'
                 );
     push(@subdirs, 'zip') if $opt_zip;