From: Aaron M. Ucko Date: Thu, 9 Jun 2011 23:22:31 +0000 (+0000) Subject: debian/rules: Force CONFIG_SHELL=/bin/bash to avoid lossage that can occur X-Git-Tag: archive/raspbian/2.16.0+ds-7+rpi1~1^2~328 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b036a3e84d3b3928a06ecab91b14ca479c713fa4;p=ncbi-blast%2B.git debian/rules: Force CONFIG_SHELL=/bin/bash to avoid lossage that can occur with zsh4 masquerading as ksh, which configure otherwise favors (due to complaints from users with broken BASH_ENV scripts that change directories). --- diff --git a/debian/changelog b/debian/changelog index 558cfe7f..e5bb296a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,8 +6,11 @@ ncbi-blast+ (2.2.25-3) UNRELEASED; urgency=low - Export MAKE to override an internal upstream build script that otherwise incorrectly defaults to gmake on non-Linux architectures. (Really closes: #629656, with any luck.) + - Force CONFIG_SHELL=/bin/bash to avoid lossage that can occur with zsh4 + masquerading as ksh, which configure otherwise favors (due to complaints + from users with broken BASH_ENV scripts that change directories). - -- Aaron M. Ucko Thu, 09 Jun 2011 19:19:46 -0400 + -- Aaron M. Ucko Thu, 09 Jun 2011 19:22:24 -0400 ncbi-blast+ (2.2.25-2) unstable; urgency=low diff --git a/debian/rules b/debian/rules index e4b82d32..91d3841b 100755 --- a/debian/rules +++ b/debian/rules @@ -27,7 +27,7 @@ export MAKE llp=LD_LIBRARY_PATH override_dh_auto_configure: cd c++ && $(llp)=$(CURDIR)/c++/BUILD/lib$${$(llp)+:$$$(llp)} \ - ./configure $(DEB_CONFIGURE_EXTRA_FLAGS) + CONFIG_SHELL=/bin/bash ./configure $(DEB_CONFIGURE_EXTRA_FLAGS) override_dh_auto_build: cd c++/BUILD/build && make -f Makefile.flat \