[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#46873] [PATCH 1/2] gnu: knot-resolver: Ensure all custom phases ret
From: |
Simon South |
Subject: |
[bug#46873] [PATCH 1/2] gnu: knot-resolver: Ensure all custom phases return #t on success. |
Date: |
Tue, 2 Mar 2021 08:53:26 -0500 |
* gnu/packages/dns.scm (knot-resolver)[arguments]<#:phases>: Return #t from
"move-doc" phase on success.
---
gnu/packages/dns.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 2c4008559f..5b0e310a0c 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -979,7 +979,8 @@ synthesis, and on-the-fly re-configuration.")
(string-append doc "/share/" dir)))
'("doc/knot-resolver/examples"
"doc/knot-resolver/html"
- "info")))))
+ "info"))
+ #t)))
(add-after 'install 'wrap-binary
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
--
2.30.1