For me, the issue seemed to be this code chunk in scripting/java/build.xml

  <condition property="mac.java.path" value="mac.oracle.java.path" else 
="mac.apple.java.path">
    <and>
      <os family="mac"/>
      <os family="unix"/>
      <contains string="${java.version}" substring="1.8" casesensitive="false" 
/>
      <contains string="${java.vendor}" substring="Oracle" 
casesensitive="false" /> 
    </and>
  </condition>

  <path id="macPath" refID="${mac.java.path}"/>

Previously, the java.version was 1.7 which made trying to build break when 
using Java8 on the mac. Since the above edit, all proceeds fine. No doubt, 
there is a more elegant way of solving this against future breakage...
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Reply via email to