mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu-dist: Use invoke instead of system*.
* guix/build/gnu-dist.scm (autoreconf, build): Use invoke and remove vestigial plumbing.
This commit is contained in:
parent
7ac1b4084f
commit
6d084076b4
1 changed files with 8 additions and 9 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -41,24 +42,22 @@ (define* (autoreconf #:rest args)
|
|||
(begin
|
||||
(format #t "bootstrapping with `~a'...~%"
|
||||
file)
|
||||
(zero?
|
||||
(system* (string-append "./" file))))
|
||||
(invoke (string-append "./" file)))
|
||||
(try-files files ...
|
||||
(else fallback ...)))))))
|
||||
(try-files "bootstrap" "bootstrap.sh" "autogen" "autogen.sh"
|
||||
(else
|
||||
(format #t "bootstrapping with `autoreconf'...~%")
|
||||
(zero? (system* "autoreconf" "-vfi"))))))
|
||||
(invoke "autoreconf" "-vfi")))))
|
||||
|
||||
(define* (build #:key build-before-dist? make-flags (dist-target "distcheck")
|
||||
#:allow-other-keys
|
||||
#:rest args)
|
||||
(and (or (not build-before-dist?)
|
||||
(when build-before-dist?
|
||||
(let ((build (assq-ref %standard-phases 'build)))
|
||||
(apply build args)))
|
||||
(begin
|
||||
(format #t "building target `~a'~%" dist-target)
|
||||
(zero? (apply system* "make" dist-target make-flags)))))
|
||||
(apply invoke "make" dist-target make-flags))
|
||||
|
||||
(define* (install-dist #:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue