gnu: distrobox: Skip substitution in man pages.
* gnu/packages/containers.scm (distrobox)[arguments]: Change refer-to-inputs phase to not substitute in man pages. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
a4b5876a77
commit
d292a63cdb
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ runtime (like runc or crun) for a single container.")
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'install 'refer-to-inputs
|
(add-before 'install 'refer-to-inputs
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* (find-files "." "^distrobox.*")
|
(substitute* (find-files "." "^distrobox.*[^1]$")
|
||||||
(("podman") (search-input-file inputs "/bin/podman"))
|
(("podman") (search-input-file inputs "/bin/podman"))
|
||||||
(("wget") (search-input-file inputs "/bin/wget"))
|
(("wget") (search-input-file inputs "/bin/wget"))
|
||||||
(("command -v") "test -x"))))
|
(("command -v") "test -x"))))
|
||||||
|
|
Reference in a new issue