diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-23 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-30 02:00:00 +0200 |
commit | 75b95af9d64563f316992af141cde4f5f4f36441 (patch) | |
tree | 9576797b49d2fb6a31cd6ab1a6074390d2b8cd52 /gnu | |
parent | 096fd9c3ffd2e2a106d64f3d08a3585c5257b94b (diff) |
gnu: mash: Fix build.
* gnu/packages/bioinformatics.scm (mash)[arguments]: Add a
new 'bootstrap phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 3b9c739515..d1448e390f 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7184,6 +7184,10 @@ sequences).") #:make-flags (list "CC=gcc") #:phases (modify-phases %standard-phases + (replace 'bootstrap + ;; The bootstrap script is missing a shebang. + (lambda _ + (invoke "bash" "./bootstrap.sh"))) (add-after 'unpack 'fix-includes (lambda _ (substitute* '("src/mash/Sketch.cpp" |