mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: bedops: Use INVOKE.
* gnu/packages/bioinformatics.scm (bedops)[arguments]: Use INVOKE.
This commit is contained in:
parent
c793f4d8fb
commit
337d72fb44
1 changed files with 3 additions and 3 deletions
|
@ -367,9 +367,9 @@ (define-public bedops
|
||||||
|
|
||||||
;; Unpack the tarballs to benefit from shebang patching.
|
;; Unpack the tarballs to benefit from shebang patching.
|
||||||
(with-directory-excursion "third-party"
|
(with-directory-excursion "third-party"
|
||||||
(and (zero? (system* "tar" "xvf" "jansson-2.6.tar.bz2"))
|
(invoke "tar" "xvf" "jansson-2.6.tar.bz2")
|
||||||
(zero? (system* "tar" "xvf" "zlib-1.2.7.tar.bz2"))
|
(invoke "tar" "xvf" "zlib-1.2.7.tar.bz2")
|
||||||
(zero? (system* "tar" "xvf" "bzip2-1.0.6.tar.bz2"))))
|
(invoke "tar" "xvf" "bzip2-1.0.6.tar.bz2"))
|
||||||
;; Disable unpacking of tarballs in Makefile.
|
;; Disable unpacking of tarballs in Makefile.
|
||||||
(substitute* "system.mk/Makefile.linux"
|
(substitute* "system.mk/Makefile.linux"
|
||||||
(("^\tbzcat .*") "\t@echo \"not unpacking\"\n")
|
(("^\tbzcat .*") "\t@echo \"not unpacking\"\n")
|
||||||
|
|
Loading…
Reference in a new issue