gnu: xdelta: Use invoke.
* gnu/packages/compression.scm (xdelta)[arguments]: Use invoke. Return a boolean from all phase procedures.
This commit is contained in:
parent
ded1e98376
commit
0a4d9eb770
1 changed files with 2 additions and 2 deletions
|
@ -1010,9 +1010,9 @@ respectively, based on the reference implementation from Google.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'enter-build-directory
|
(add-after 'unpack 'enter-build-directory
|
||||||
(lambda _ (chdir "xdelta3")))
|
(lambda _ (chdir "xdelta3") #t))
|
||||||
(add-after 'enter-build-directory 'autoconf
|
(add-after 'enter-build-directory 'autoconf
|
||||||
(lambda _ (zero? (system* "autoreconf" "-vfi")))))))
|
(lambda _ (invoke "autoreconf" "-vfi"))))))
|
||||||
(home-page "http://xdelta.org")
|
(home-page "http://xdelta.org")
|
||||||
(synopsis "Delta encoder for binary files")
|
(synopsis "Delta encoder for binary files")
|
||||||
(description "xdelta encodes only the differences between two binary files
|
(description "xdelta encodes only the differences between two binary files
|
||||||
|
|
Reference in a new issue