diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-10-24 16:59:39 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-10-24 16:59:39 +0000 |
commit | e5a26a1f02503f676378fe6f30dba4249c3090af (patch) | |
tree | c5a523c2fce2fcbb5319e0fb405088cb6ddb1c48 | |
parent | 2ec601580bfaed84453e2f9cbc0ba3088c820d2d (diff) | |
download | guix-e5a26a1f02503f676378fe6f30dba4249c3090af.tar.gz |
gnu: bowtie: Remove trailing #T.
* gnu/packages/bioinformatics.scm (bowtie)[arguments]: Remove trailing #T from build phases... [source]: ...and from the snippet.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 128294ab9c..4743e56abc 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1692,8 +1692,7 @@ errors at the end of reads.") (substitute* "Makefile" ;; replace BUILD_HOST and BUILD_TIME for deterministic build (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"") - (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")) - #t)))) + (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))) (build-system gnu-build-system) (arguments '(#:make-flags @@ -1708,8 +1707,7 @@ errors at the end of reads.") (invoke "perl" "scripts/test/simple_tests.pl" "--bowtie2=./bowtie2" - "--bowtie2-build=./bowtie2-build") - #t))))) + "--bowtie2-build=./bowtie2-build")))))) (inputs `(("tbb" ,tbb-2020) ("zlib" ,zlib) |