From d59f7effcf482fb23897e6e1e3b922e3cb49e8ee Mon Sep 17 00:00:00 2001 From: Cees de Groot Date: Tue, 1 Feb 2022 14:12:17 -0500 Subject: gnu: elixir: Fix regex for ERTS_BIN substitution. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir.scm (elixir)[arguments]: In 'replace-paths' phase, change "ERTS_BIN" regexp. Signed-off-by: Ludovic Courtès --- gnu/packages/elixir.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index fae8279e5c..55e17f2901 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -70,7 +70,7 @@ (("#!/bin/sh") (string-append "#!" (search-input-file inputs "/bin/sh")))) (substitute* "bin/elixir" - (("^ERTS_BIN=$") + (("ERTS_BIN=\n") (string-append "ERTS_BIN=" ;; Elixir Releases will prepend to ERTS_BIN the path of -- cgit v1.2.3