It doesn't seem to matter what I target but lets use ant dist for example. Here are the first 11 or 12 lines of the file:
Code:
<project name="ZimbraServer" default="jar">
<property environment="env" />
<!--
This machine's hostname. Use ZIMBRA_HOSTNAME environment variable
if set. If not, use "hostname" command output.
-->
<exec executable="hostname" outputproperty="exec.hostname"/>
<condition property="zimbra.server.hostname" value="${env.ZIMBRA_HOSTNAME}">
<isset property="env.ZIMBRA_HOSTNAME"/>
</condition>