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:
parent
fed9078906
commit
8eb66f4a68
|
@ -5403,13 +5403,14 @@ so it might be a tiny bit slower.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "python" "waf-light" "configure" "build"))))
|
(invoke "python" "waf-light" "configure" "build")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "python" "waf" "--version"))))
|
(invoke "python" "waf" "--version")))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(copy-file "waf" %output))))))
|
(copy-file "waf" %output)
|
||||||
|
#t)))))
|
||||||
(home-page "https://waf.io/")
|
(home-page "https://waf.io/")
|
||||||
(synopsis "Python-based build system")
|
(synopsis "Python-based build system")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue