diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 10:49:27 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:21:19 +0100 |
commit | 0ad0eceed4ffdf1c5da8737edc15f429ac077775 (patch) | |
tree | 3e8c4047378f1c4636ee5e722aa506a13f0e77a9 /gnu/packages/textutils.scm | |
parent | 90621eff7cca47a3cbd69d96d197b23a60668326 (diff) | |
download | patches-0ad0eceed4ffdf1c5da8737edc15f429ac077775.tar patches-0ad0eceed4ffdf1c5da8737edc15f429ac077775.tar.gz |
gnu: antiword: Use INVOKE.
* gnu/packages/textutils.scm (antiword)[arguments]: Use INVOKE in install phase.
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 9cd5a203c4..d2f84420c6 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> -;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2015 Roel Janssen <roel@gnu.org> ;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org> @@ -405,7 +405,7 @@ regular expression object can be specified.") #t)) (replace 'install (lambda* (#:key make-flags #:allow-other-keys) - (zero? (apply system* "make" `("global_install" ,@make-flags)))))))) + (apply invoke "make" `("global_install" ,@make-flags))))))) (home-page "http://www.winfield.demon.nl/") (synopsis "Microsoft Word document reader") (description "Antiword is an application for displaying Microsoft Word |