From ef2838b1fc98e52d66e3446bab9473831e401ead Mon Sep 17 00:00:00 2001 From: Badlop Date: Fri, 16 Feb 2024 22:48:11 +0100 Subject: [PATCH] Revert "Now --with-rebar detects if it's system-installed, otherwise use local one" This reverts commit f938e2212f1a643523fc2e002e67eb55d3346e13. --- .github/workflows/ci.yml | 2 +- .github/workflows/runtime.yml | 2 +- Makefile.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba6b7c9bc93..997d091c9fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: - name: Compile run: | ./autogen.sh - ./configure --with-rebar=rebar3 \ + ./configure --with-rebar=./rebar3 \ --prefix=/tmp/ejabberd \ --enable-all \ --disable-elixir \ diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index 54ba16e2505..5e0b4363633 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -65,7 +65,7 @@ jobs: - name: Compile run: | ./autogen.sh - ./configure --with-rebar=${{ matrix.rebar }} \ + ./configure --with-rebar=./${{ matrix.rebar }} \ --prefix=/tmp/ejabberd \ --enable-all \ --disable-elixir \ diff --git a/Makefile.in b/Makefile.in index acad927fd43..72c5c91fade 100644 --- a/Makefile.in +++ b/Makefile.in @@ -188,7 +188,7 @@ else REBARREL=$(REBAR) generate REBARDEV= RELIVECMD=@echo "Rebar2 detected... relive not supported.\ - \nTry: ./configure --with-rebar=rebar3 ; make relive" + \nTry: ./configure --with-rebar=./rebar3 ; make relive" REL_LIB_DIR = rel/ejabberd/lib COPY_REL_TARGET = rel endif