From 70e430cff1525c0a16ad484f5a48e9849e8f9115 Mon Sep 17 00:00:00 2001 From: Badlop Date: Fri, 16 Feb 2024 13:00:33 +0100 Subject: [PATCH] Makefile: No need to use escript to run rebar|rebar3|mix Usage of escript to run rebar was added to Makefile.in when support for rebar2 was added in 4d8f770 for ejabberd 13.10. Nowadays this seems unnecessary, and configure.ac right now can determine what binary to use: the sysmte installed or local one. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index e105b2874..72c5c91fa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ # ESCRIPT = @ESCRIPT@ -REBAR = @ESCRIPT@ @rebar@ +REBAR = @rebar@ MIX = @rebar@ AWK = @AWK@ INSTALL = @INSTALL@