diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 09:52:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 09:52:46 +0100 |
commit | 9f527c91990c4f620c88bb609e95589809a1354c (patch) | |
tree | e27db0969877f7c4365af0e4b0f57f1698a2537f /gnu/packages | |
parent | 86c6928ea39aff622124030c20404ce94dae9b49 (diff) | |
download | patches-9f527c91990c4f620c88bb609e95589809a1354c.tar patches-9f527c91990c4f620c88bb609e95589809a1354c.tar.gz |
gnu: sailfish: Use INVOKE.
* gnu/packages/bioinformatics.scm (sailfish)[arguments]: Use INVOKE instead of
SYSTEM*.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d9362ea4c6..c175227997 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -12014,10 +12014,10 @@ bytes of memory space, where n is the length of the string.") (include "external/install/include/rapmap/") (rapmap (assoc-ref inputs "rapmap"))) (mkdir-p "/tmp/rapmap") - (system* "tar" "xf" - (assoc-ref inputs "rapmap") - "-C" "/tmp/rapmap" - "--strip-components=1") + (invoke "tar" "xf" + (assoc-ref inputs "rapmap") + "-C" "/tmp/rapmap" + "--strip-components=1") (mkdir-p src) (mkdir-p include) (for-each (lambda (file) |