diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 20:33:25 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:00 +0200 |
commit | f4f46fc350c134a3573f9f027674b64b33ebdba1 (patch) | |
tree | 3d9649d4cbe7467cf80afd145480108bb8819b44 | |
parent | c3d1448411404e7415d75b0f44263ce14eaf89a0 (diff) | |
download | gnu-guix-f4f46fc350c134a3573f9f027674b64b33ebdba1.tar gnu-guix-f4f46fc350c134a3573f9f027674b64b33ebdba1.tar.gz |
gnu: par2cmdline: Return #t from phases.
* gnu/packages/backup.scm (par2cmdline)[arguments]: Substitute INVOKE
for SYSTEM*.
-rw-r--r-- | gnu/packages/backup.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 9ef0ee7f09..0b914d9709 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -147,7 +147,7 @@ spying and/or modification by the server.") `(#:phases (modify-phases %standard-phases (add-after 'unpack 'autoreconf - (lambda _ (zero? (system* "autoreconf" "-vfi"))))))) + (lambda _ (invoke "autoreconf" "-vfi")))))) (synopsis "File verification and repair tools") (description "Par2cmdline uses Reed-Solomon error-correcting codes to generate and verify PAR2 recovery files. These files can be distributed |