gnu: samtools: End installation phases with truth.
* gnu/packages/bioinformatics.scm (samtools, samtools-0.1)[arguments]: Return #T instead of the undefined results of COPY-FILE or INSTALL-FILE.
This commit is contained in:
parent
35dcfed370
commit
b2d748edff
1 changed files with 4 additions and 2 deletions
|
@ -4284,7 +4284,8 @@ to the user's query of interest.")
|
||||||
'install 'install-library
|
'install 'install-library
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((lib (string-append (assoc-ref outputs "out") "/lib")))
|
(let ((lib (string-append (assoc-ref outputs "out") "/lib")))
|
||||||
(install-file "libbam.a" lib)))
|
(install-file "libbam.a" lib)
|
||||||
|
#t))
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
'install 'install-headers
|
'install 'install-headers
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
@ -4336,7 +4337,8 @@ viewer.")
|
||||||
(assoc-ref outputs "out") "/bin")))
|
(assoc-ref outputs "out") "/bin")))
|
||||||
(mkdir-p bin)
|
(mkdir-p bin)
|
||||||
(copy-file "samtools"
|
(copy-file "samtools"
|
||||||
(string-append bin "/samtools")))))
|
(string-append bin "/samtools"))
|
||||||
|
#t)))
|
||||||
(delete 'patch-tests)
|
(delete 'patch-tests)
|
||||||
(delete 'configure))))))))
|
(delete 'configure))))))))
|
||||||
|
|
||||||
|
|
Reference in a new issue