gnu: unzip: Use invoke instead of system*.
* gnu/packages/compression.scm (unzip)[arguments]: Use invoke.
This commit is contained in:
parent
144cc3c4af
commit
fa76696b00
|
@ -1765,11 +1765,11 @@ Compression ratios of 2:1 to 3:1 are common for text files.")
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
(zero? (apply system* "make"
|
(apply invoke "make"
|
||||||
`("-j" ,(number->string
|
`("-j" ,(number->string
|
||||||
(parallel-job-count))
|
(parallel-job-count))
|
||||||
,@make-flags
|
,@make-flags
|
||||||
"generic_gcc"))))))
|
"generic_gcc")))))
|
||||||
#:make-flags (list "-f" "unix/Makefile"
|
#:make-flags (list "-f" "unix/Makefile"
|
||||||
(string-append "prefix=" %output)
|
(string-append "prefix=" %output)
|
||||||
(string-append "MANDIR=" %output "/share/man/man1"))))
|
(string-append "MANDIR=" %output "/share/man/man1"))))
|
||||||
|
|
Loading…
Reference in New Issue