gnu: unzip: Use invoke instead of system*.

* gnu/packages/compression.scm (unzip)[arguments]: Use invoke.
master
Mark H Weaver 2018-03-16 02:42:05 -04:00
parent 144cc3c4af
commit fa76696b00
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 5 additions and 5 deletions

View File

@ -1765,11 +1765,11 @@ Compression ratios of 2:1 to 3:1 are common for text files.")
(delete 'configure)
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(zero? (apply system* "make"
`("-j" ,(number->string
(parallel-job-count))
,@make-flags
"generic_gcc"))))))
(apply invoke "make"
`("-j" ,(number->string
(parallel-job-count))
,@make-flags
"generic_gcc")))))
#:make-flags (list "-f" "unix/Makefile"
(string-append "prefix=" %output)
(string-append "MANDIR=" %output "/share/man/man1"))))