diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 22:03:12 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:01 +0200 |
commit | 6b042495efbee8f6717793571037f7d75b9f31bf (patch) | |
tree | 52316458edee3393acd387615a6346b4e7b52c4c /gnu/packages | |
parent | 9a3a1565e93b3a45f8e2d8a83518ff0405341b38 (diff) | |
download | patches-6b042495efbee8f6717793571037f7d75b9f31bf.tar patches-6b042495efbee8f6717793571037f7d75b9f31bf.tar.gz |
gnu: knot: Return #t from all phases.
* gnu/packages/backup.scm (knot)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/dns.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index f640f0a777..78479b2d32 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -541,10 +541,9 @@ Extensions} (DNSSEC).") (let* ((out (assoc-ref outputs "out")) (doc (string-append out "/share/doc/knot")) (etc (string-append doc "/examples/etc"))) - (zero? - (system* "make" - (string-append "config_dir=" etc) - "install"))))) + (invoke "make" + (string-append "config_dir=" etc) + "install")))) (add-after 'install 'wrap-python-scripts (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |