Hello,
I tried to install Zimbra FRANKLIN using p4, I run buildThirdParty.sh all is done with succes (only clamav failed), I continue the process by executing make dev-install under ZimbraBuild, also all is good but..I have got at the end:
BUILD SUCCESSFUL
Total time: 7 minutes 15 seconds
rm -rf zimbraConf
mkdir zimbraConf
cp /home/public/p4/FRANKLIN/ZimbraBuild/../ZimbraWebClient/build/web.xml zimbraConf
*** Installing tomcat
(cd /opt/zimbra; tar xzf /home/public/p4/FRANKLIN/ZimbraBuild/../ThirdParty/jakarta-tomcat/apache-tomcat-5.5.15.tar.gz

tar: /home/public/p4/FRANKLIN/ZimbraBuild/../ThirdParty/jakarta-tomcat/apache-tomcat-5.5.15.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
make: *** [/opt/zimbra/apache-tomcat-5.5.15] Error 2
This means that it is trying to install Tomcat instead of jetty, I search the script that do this job and I find it in this file /home/public/p4/FRANKLIN/ZimbraBuild/defs/devtargets.def
and this is the code
$(DEV_INSTALL_ROOT)/$(TOMCAT_DIR): $(DEV_INSTALL_ROOT) $(SERVICE_DIR)/$(WEBAPP_BUILD_DIR)/service.war $(CONSOLE_DIR)/$(WEBAPP_BUILD_DIR)/zimbra.war
@echo "*** Installing tomcat"
(cd $(DEV_INSTALL_ROOT); tar xzf $(TOMCAT_SOURCE).tar.gz

cp -f $(SERVICE_DIR)/conf/tomcat-5.5/server.xml $@/conf/server.xml
cp -f $(SERVICE_DIR)/conf/zimbra.xml $@/conf/Catalina/localhost/zimbra.xml
mkdir -p $@/conf/AdminService/localhost
cp -f $(SERVICE_DIR)/conf/zimbraAdmin.xml $@/conf/AdminService/localhost/zimbraAdmin.xml
cp -f $(SERVICE_DIR)/conf/tomcat-5.5/tomcat-users.xml $@/conf
cp -f $(SERVICE_DIR)/build/dist/conf/log4j.properties.production $@/conf/log4j.properties
mkdir -p $@/temp
touch $@/temp/.emptyfile
I dont know how to modify it in the aim to install jetty instead of tomcat?
Please help!