The current Makefile.install fails for centos at this point:
# Install ejabberd from official project installer binary
install_ejabberd:
if [ ! -f $(EJABBERD_PKG).gz ]; then wget
$(EJABBERD_HOST)/$(EJABBERD_VER)/$(EJABBERD_PKG).gz; fi;
gunzip $(EJABBERD_PKG).gz
chmod u+x $(EJABBERD_PKG).gz
./$(EJABBERD_PKG) --mode unattended --prefix /opt/ejabberd
--adminpw opensrf
After the gunzip command, there is no file named $(EJABBERD_PKG).gz.
The chmod command should be updated to:
chmod u+x $(EJABBERD_PKG)
Also, I have a question. Does the Makefile.install just
install pre-requisites? If I manually (or in the future
using rpm files) install the pre-requisites, do I need to
run the make command for Makefile.install?
c