gnu: ngs-sdk: Use INVOKE.

* gnu/packages/bioinformatics.scm (ngs-sdk)[arguments]: Use INVOKE and
return #T unconditionally.
master
Ricardo Wurmus 2018-11-08 09:15:05 +01:00
parent e78e54d029
commit 3da3cedf76
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 3 deletions

View File

@ -5262,9 +5262,10 @@ Roche 454, Ion Torrent and Pacific BioSciences SMRT.")
;; The 'configure' script doesn't recognize things like
;; '--enable-fast-install'.
(zero? (system* "./configure"
(string-append "--build-prefix=" (getcwd) "/build")
(string-append "--prefix=" out))))))
(invoke "./configure"
(string-append "--build-prefix=" (getcwd) "/build")
(string-append "--prefix=" out))
#t)))
(add-after 'unpack 'enter-dir
(lambda _ (chdir "ngs-sdk") #t)))))
(native-inputs `(("perl" ,perl)))