diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 21:59:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:01 +0200 |
commit | b43cd106ee4732b94037b879b02156ad5ad8c9de (patch) | |
tree | e23dc9cef6e9b9e6168eb5a6c9f4f91d3910d529 /gnu/packages/dns.scm | |
parent | 997a4e1899c339780d17da248f0c750969f7535e (diff) | |
download | patches-b43cd106ee4732b94037b879b02156ad5ad8c9de.tar patches-b43cd106ee4732b94037b879b02156ad5ad8c9de.tar.gz |
gnu: dnscrypt-wrapper: Return #t from phases.
* gnu/packages/dns.scm (dnscrypt-wrapper)[arguments]: Substitute INVOKE
for SYSTEM*.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 59ba21ac9c..5cdae12364 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -235,7 +235,7 @@ servers is included, and an up-to-date version is available at (modify-phases %standard-phases (add-after 'unpack 'create-configure (lambda _ - (zero? (system* "make" "configure"))))))) + (invoke "make" "configure")))))) (native-inputs `(("autoconf" ,autoconf))) (inputs |