I am trying to install 10.12 on Ubuntu server 10.04 64bit and I get this error from ant:
BUILD FAILED
/root/src/oscar_source/oscar_mcmaster/build/build.xml:477: /root/src/oscar_source/oscar_mcmaster/build/${tomcat.lib} not found.
I followed the instructions at http://www.oscarmanual.org/oscar-emr/developers/installation/basic-manual-oscar-install
I know tomcat also failed to start during installation but that shouldn't be a problem. I read somewhere that this happens due to java not being configured first. Can anyone shed some light on how to fix the build problem?
I have been logged in as root. I have also tried this without the datestamp when retrieving the source code. I have also tried without the datestamp and using 10_06 with the same result.
I have had this same problem, if can anyone help
A quick fix:
1. Open .../oscar/build/build.xml
2. Replace:
<property name="catalina" location="${env.CATALINA_HOME}" />
with
<property name="catalina" location="/usr/share/tomcat6" />
Somehow your CATALINA_HOME environment variable is not working.