diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-20 22:05:10 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-20 23:37:34 +0200 |
commit | 337d72fb4410d0ed255b032ca55d2d9dd3dd3065 (patch) | |
tree | d7a03bc5b284928949feaf6c547628078bc618aa /gnu/packages | |
parent | c793f4d8fb25044994b2694632c6d6f3d40b49b7 (diff) | |
download | guix-337d72fb4410d0ed255b032ca55d2d9dd3dd3065.tar.gz |
gnu: bedops: Use INVOKE.
* gnu/packages/bioinformatics.scm (bedops)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4192a6c61b..ef1f1ae0c2 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -367,9 +367,9 @@ transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.") ;; Unpack the tarballs to benefit from shebang patching. (with-directory-excursion "third-party" - (and (zero? (system* "tar" "xvf" "jansson-2.6.tar.bz2")) - (zero? (system* "tar" "xvf" "zlib-1.2.7.tar.bz2")) - (zero? (system* "tar" "xvf" "bzip2-1.0.6.tar.bz2")))) + (invoke "tar" "xvf" "jansson-2.6.tar.bz2") + (invoke "tar" "xvf" "zlib-1.2.7.tar.bz2") + (invoke "tar" "xvf" "bzip2-1.0.6.tar.bz2")) ;; Disable unpacking of tarballs in Makefile. (substitute* "system.mk/Makefile.linux" (("^\tbzcat .*") "\t@echo \"not unpacking\"\n") |