diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 10:48:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:21:18 +0100 |
commit | 90621eff7cca47a3cbd69d96d197b23a60668326 (patch) | |
tree | 9443d65663ed19b737c3908d0e26aece290fd457 /gnu/packages/uucp.scm | |
parent | aa0c73e7aa9c894c6e1fb4c037ca2c5eca49cd2f (diff) | |
download | guix-90621eff7cca47a3cbd69d96d197b23a60668326.tar guix-90621eff7cca47a3cbd69d96d197b23a60668326.tar.gz |
gnu: uucp: Use INVOKE.
* gnu/packages/uucp.scm (uucp)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages/uucp.scm')
-rw-r--r-- | gnu/packages/uucp.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/uucp.scm b/gnu/packages/uucp.scm index f5d9c70052..1bb4fdb975 100644 --- a/gnu/packages/uucp.scm +++ b/gnu/packages/uucp.scm @@ -43,10 +43,10 @@ ;; that we pass by default. (setenv "CONFIG_SHELL" (which "sh")) (let ((out (assoc-ref outputs "out"))) - (zero? (system* "./configure" - (string-append "--prefix=" out) - (string-append "--infodir=" out - "/share/info"))))))))) + (invoke "./configure" + (string-append "--prefix=" out) + (string-append "--infodir=" out + "/share/info")))))))) (home-page "https://www.gnu.org/software/uucp/uucp.html") (synopsis "UUCP protocol implementation") (description |