[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63798] [PATCH] Fix Erlang package substitutions
From: |
wrobell |
Subject: |
[bug#63798] [PATCH] Fix Erlang package substitutions |
Date: |
Mon, 29 May 2023 23:22:24 +0100 |
Both `dirname` and `basename` need to be substituted. There is no need
for `sed` substitution in Erlag 25.3.
---
gnu/packages/erlang.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 7564c2a560..b6e82e0109 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2021 Oskar Köök <oskar@maatriks.ee>
;;; Copyright © 2021 Cees de Groot <cg@evrl.com>
;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2023 wrobell <wrobell@riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -168,7 +169,8 @@ (define-public erlang
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(substitute* (string-append out "/bin/erl")
- (("sed") (which "sed"))))))
+ (("basename") (which "basename"))
+ (("dirname") (which "dirname"))))))
(add-after 'install 'install-doc
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
base-commit: 7b400e7f8751e6b0cc6e66d3f7ecfb7f5bd51309
--
2.40.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#63798] [PATCH] Fix Erlang package substitutions,
wrobell <=