diff options
author | Johan Oudinet <johan.oudinet@gmail.com> | 2015-01-12 10:32:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-03 10:23:39 +0100 |
commit | 8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e (patch) | |
tree | 4b5953feaa672d3085a048ad0d3f34c94fba11b7 /package/ejabberd/0003-disable-test.patch | |
parent | 527aaf08cca0e9b74cb3c13ce87802a603010793 (diff) | |
download | buildroot-8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e.tar.gz buildroot-8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e.zip |
ejabberd: new package.
[Thomas:
- Adjust the comment about the dependency on erlang
- Fix license to be 'GPLv2+ with OpenSSL exception' and not just 'GPLv2+'
- Use double quotes instead of simple quotes in the .mk file.
- Don't use the EJABBERD_MAKE_ENV variable, since it's not defined
anywhere.
- Remove the 0007-fix-init.patch patch, since we're not using the
init script provided by ejabberd, and rename
0008-fix-install-permissions.patch to
0007-fix-install-permissions.patch.]
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ejabberd/0003-disable-test.patch')
-rw-r--r-- | package/ejabberd/0003-disable-test.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/ejabberd/0003-disable-test.patch b/package/ejabberd/0003-disable-test.patch new file mode 100644 index 0000000000..4354ab6a07 --- /dev/null +++ b/package/ejabberd/0003-disable-test.patch @@ -0,0 +1,21 @@ +Description: remove testing with MySQL and PostgreSQL + Without this patch a test would be initiated after building ejabberd that + requires specially configured instances of MySQL and PostgreSQL to be up + and running. +Author: Philipp Huebner <debalance@debian.org> + +Index: ejabberd/Makefile.in +=================================================================== +--- ejabberd.orig/Makefile.in ++++ ejabberd/Makefile.in +@@ -260,10 +260,6 @@ dialyzer: erlang_plt deps_plt ejabberd_p + status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi + + test: +- @echo "************************** NOTICE ***************************************" +- @cat test/README +- @echo "*************************************************************************" +- $(REBAR) skip_deps=true ct + + .PHONY: src doc edoc dialyzer Makefile TAGS clean clean-rel distclean rel \ + install uninstall uninstall-binary uninstall-all translations deps test spec \ |