1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 01:39:35 +02:00

Update "make translations" to reduce build requirements

Previously, preparing translations required rebar3 and:
  ./configure --enable-tools
  make
  make translations

With this change it works with rebar3 and mix, just running:
  ./configure
  make translations
This commit is contained in:
Badlop 2024-02-13 13:05:09 +01:00
parent e1f863afa4
commit 3c98ec5b48
4 changed files with 11 additions and 5 deletions

View file

@ -256,7 +256,7 @@ AC_ARG_ENABLE(system_deps,
esac],[if test "x$system_deps" = "x"; then system_deps=false; fi])
AC_ARG_ENABLE(tools,
[AS_HELP_STRING([--enable-tools],[build development tools: ejabberd-po, etop (default: no)])],
[AS_HELP_STRING([--enable-tools],[build development tools: etop (default: no)])],
[case "${enableval}" in
yes) tools=true ;;
no) tools=false ;;