[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: dns: Return #t instead of something undefined.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/11: gnu: dns: Return #t instead of something undefined. |
Date: |
Tue, 21 Mar 2017 21:02:54 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 2d431b0130e12f3774f0b639d54a79487673b299
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Mar 21 07:55:49 2017 +0100
gnu: dns: Return #t instead of something undefined.
* gnu/packages/dns.scm (yadifa, knot)[arguments]: Return #t after calling
‘substitute*’.
(knot)[source]: Return #t after calling ‘delete-file-recursively’.
---
gnu/packages/dns.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index d09abc1..ec89abc 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -294,8 +294,10 @@ asynchronous fashion.")
(arguments
`(#:phases (modify-phases %standard-phases
(add-before 'configure 'omit-example-configurations
- (lambda _ (substitute* "Makefile.in"
- ((" (etc|var)") "")))))
+ (lambda _
+ (substitute* "Makefile.in"
+ ((" (etc|var)") ""))
+ #t)))
#:configure-flags (list "--sysconfdir=/etc" "--localstatedir=/var"
"--enable-shared" "--disable-static"
"--enable-messages" "--enable-ctrl"
@@ -334,7 +336,8 @@ Extensions} (DNSSEC).")
(("contrib/dnstap ") ""))
(with-directory-excursion "src/contrib"
(for-each delete-file-recursively
- (list "dnstap" "lmdb")))))))
+ (list "dnstap" "lmdb")))
+ #t))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
@@ -354,7 +357,8 @@ Extensions} (DNSSEC).")
(add-before 'configure 'disable-directory-pre-creation
(lambda _
;; Don't install empty directories like ‘/etc’ outside the store.
- (substitute* "src/Makefile.in" (("\\$\\(INSTALL\\) -d") "true"))))
+ (substitute* "src/Makefile.in" (("\\$\\(INSTALL\\) -d") "true"))
+ #t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
- branch master updated (7dbd75b -> 8e71896), Tobias Geerinckx-Rice, 2017/03/21
- 02/11: gnu: python-markdown: Update to 2.6.8., Tobias Geerinckx-Rice, 2017/03/21
- 04/11: gnu: python-sphinx-cloud-sptheme: Update to 1.8.0., Tobias Geerinckx-Rice, 2017/03/21
- 07/11: gnu: python-feedgenerator: Update to 1.9., Tobias Geerinckx-Rice, 2017/03/21
- 06/11: gnu: python-wrapt: Update to 1.10.8., Tobias Geerinckx-Rice, 2017/03/21
- 03/11: gnu: python-wcwidth: Update to 0.1.7., Tobias Geerinckx-Rice, 2017/03/21
- 09/11: gnu: python-atomicwrites: Update to 1.1.5., Tobias Geerinckx-Rice, 2017/03/21
- 10/11: gnu: python-zope-component: Update to 4.3.0., Tobias Geerinckx-Rice, 2017/03/21
- 01/11: gnu: dns: Return #t instead of something undefined.,
Tobias Geerinckx-Rice <=
- 11/11: gnu: python-psycopg2: Update to 2.6.2., Tobias Geerinckx-Rice, 2017/03/21
- 05/11: gnu: python-py: Update to 1.4.32., Tobias Geerinckx-Rice, 2017/03/21
- 08/11: gnu: python-texttable: Update to 0.8.7., Tobias Geerinckx-Rice, 2017/03/21