1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Michael R. Crusoe <crusoe@debian.org>
Subject: small_mers needs bash
Forwarded: https://github.com/gmarcais/Jellyfish/pull/172
Due to process substitution. Thanks to https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/jellyfish.html for highlighting this.
--- jellyfish.orig/tests/small_mers.sh
+++ jellyfish/tests/small_mers.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#! /bin/bash
mkdir -p tests-data; cd tests-data
. ../compat.sh
--- jellyfish.orig/Makefile.am
+++ jellyfish/Makefile.am
@@ -1,3 +1,4 @@
+SHELL = /bin/bash
ACLOCAL_AMFLAGS = -I m4
DISTCHECK_CONFIGURE_FLAGS=--enable-swig --enable-all-binding
|