gnu: gnumach: Use invoke.

* gnu/packages/hurd.scm (gnumach)[arguments]: Use invoke and remove vestigial
plumbing in the 'produce-image' phase.
master
Mark H Weaver 2018-03-23 02:42:30 -04:00
parent 92fcb831c0
commit a53ced66b1
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 3 additions and 4 deletions

View File

@ -228,10 +228,9 @@ Hurd-minimal package which are needed for both glibc and GCC.")
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(boot (string-append out "/boot")))
(and (zero? (system* "make" "gnumach.gz"))
(begin
(install-file "gnumach.gz" boot)
#t))))))))
(invoke "make" "gnumach.gz")
(install-file "gnumach.gz" boot)
#t))))))
(native-inputs
`(("mig" ,mig)
("perl" ,perl)))