gnu: python-waf: Return #t from all phases.

* gnu/packages/python.scm (python-waf)[arguments]: Use invoke instead of
system*, and return #t from all phases.
This commit is contained in:
Mark H Weaver 2018-04-12 03:26:56 -04:00
parent fed9078906
commit 8eb66f4a68
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -5403,13 +5403,14 @@ (define-public python-waf
(modify-phases %standard-phases
(replace 'build
(lambda _
(zero? (system* "python" "waf-light" "configure" "build"))))
(invoke "python" "waf-light" "configure" "build")))
(replace 'check
(lambda _
(zero? (system* "python" "waf" "--version"))))
(invoke "python" "waf" "--version")))
(replace 'install
(lambda _
(copy-file "waf" %output))))))
(copy-file "waf" %output)
#t)))))
(home-page "https://waf.io/")
(synopsis "Python-based build system")
(description