diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-11 20:30:44 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-12 04:57:53 +0100 |
commit | 778fb47bcd1a595c0cd9e9d47f984f6d0bfaccf7 (patch) | |
tree | 8119d52df071ae7159c61b5403ae62842c14fc27 /gnu | |
parent | fe0523d4579e7bdeb9771ba9527545e802598d9d (diff) | |
download | patches-778fb47bcd1a595c0cd9e9d47f984f6d0bfaccf7.tar patches-778fb47bcd1a595c0cd9e9d47f984f6d0bfaccf7.tar.gz |
gnu: msgpack: Update phase style.
* gnu/packages/serialization.scm (msgpack)[arguments]: Substitute INVOKE
for SYSTEM* and end phase with #t.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/serialization.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index a0361c76fd..131d68242c 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -131,7 +131,8 @@ such as compact binary encodings, XML, or JSON.") (modify-phases %standard-phases (add-after 'unpack 'autoconf (lambda _ - (system* "autoreconf" "-vfi")))))) + (invoke "autoreconf" "-vfi") + #t))))) (home-page "https://www.msgpack.org") (synopsis "Binary serialization library") (description "Msgpack is a library for C/C++ that implements binary |