mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
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
1 changed files with 5 additions and 4 deletions
|
@ -4762,10 +4762,11 @@ (define-public roary
|
|||
(getenv "PATH")))
|
||||
(setenv "PERL5LIB" (string-append (getcwd) "/lib" ":"
|
||||
(getenv "PERL5LIB")))
|
||||
(zero? (length (filter (lambda (file)
|
||||
(display file)(display "\n")
|
||||
(not (zero? (system* "perl" file))))
|
||||
(find-files "t" ".*\\.t$"))))))
|
||||
(for-each (lambda (file)
|
||||
(display file)(display "\n")
|
||||
(invoke "perl" file))
|
||||
(find-files "t" ".*\\.t$"))
|
||||
#t))
|
||||
(replace 'install
|
||||
;; There is no 'install' target in the Makefile.
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue