Hi Jen,
This error indicates that hg (Mercurial executable) cannot be found.
We use Mercurial version control for AFC development.
Of course Mercurial should not be required to build AFC from source
distribution package. This will be fixed in the next AFC release.
To fix the current build you can either
1. install Mercurial and check that hg is in your path
or
2. pull the latest sources from project repository (you will have to
install Mercurial for that anyway)
or
3. edit the following line in build.xml and components/build-
common.xml:
<exec executable="hg" dir="${basedir}" outputproperty="hgrev">
to make it look like this:
<exec executable="hg" dir="${basedir}" outputproperty="hgrev"
failifexecutionfails="false">
Regards,
Vladimir