guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/16: gnu: elixir: Fix regex for ERTS_BIN substitution.


From: guix-commits
Subject: 11/16: gnu: elixir: Fix regex for ERTS_BIN substitution.
Date: Mon, 14 Feb 2022 09:53:40 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit d59f7effcf482fb23897e6e1e3b922e3cb49e8ee
Author: Cees de Groot <cg@evrl.com>
AuthorDate: Tue Feb 1 14:12:17 2022 -0500

    gnu: elixir: Fix regex for ERTS_BIN substitution.
    
    * gnu/packages/elixir.scm (elixir)[arguments]: In 'replace-paths' phase,
    change "ERTS_BIN" regexp.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]