mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
build-system/waf: Use invoke.
* guix/build/waf-build-system.scm (call-waf): Use "invoke" and unconditionally return #t.
This commit is contained in:
parent
bc19a68c5c
commit
b194da0d68
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -38,7 +38,8 @@ (define (call-waf command params)
|
|||
(begin
|
||||
(format #t "running \"python waf\" with command ~s and parameters ~s~%"
|
||||
command params)
|
||||
(zero? (apply system* "python" "waf" command params)))
|
||||
(apply invoke "python" "waf" command params)
|
||||
#t)
|
||||
(error "no waf found")))
|
||||
|
||||
(define* (configure #:key target native-inputs inputs outputs
|
||||
|
|
Loading…
Reference in a new issue