gnu: roary: Use INVOKE.
* gnu/packages/bioinformatics.scm (roary)[arguments]: Use INVOKE and return #T unconditionally.
This commit is contained in:
parent
a9542937c8
commit
ce49fdcce9
|
@ -4762,10 +4762,11 @@ partial genes, and identifies translation initiation sites.")
|
||||||
(getenv "PATH")))
|
(getenv "PATH")))
|
||||||
(setenv "PERL5LIB" (string-append (getcwd) "/lib" ":"
|
(setenv "PERL5LIB" (string-append (getcwd) "/lib" ":"
|
||||||
(getenv "PERL5LIB")))
|
(getenv "PERL5LIB")))
|
||||||
(zero? (length (filter (lambda (file)
|
(for-each (lambda (file)
|
||||||
(display file)(display "\n")
|
(display file)(display "\n")
|
||||||
(not (zero? (system* "perl" file))))
|
(invoke "perl" file))
|
||||||
(find-files "t" ".*\\.t$"))))))
|
(find-files "t" ".*\\.t$"))
|
||||||
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
;; There is no 'install' target in the Makefile.
|
;; There is no 'install' target in the Makefile.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue