From c0c99e6e2c393ee628eeb6a9f79a20ed49873853 Mon Sep 17 00:00:00 2001 From: Dan Povey Date: Thu, 21 Aug 2014 21:37:46 +0000 Subject: [PATCH] trunk: fixes to tools/extras/check_dependencies.sh git-svn-id: https://svn.code.sf.net/p/kaldi/code/trunk@4332 5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8 --- tools/extras/check_dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/extras/check_dependencies.sh b/tools/extras/check_dependencies.sh index f83b1b9b1..9eff3dc2b 100755 --- a/tools/extras/check_dependencies.sh +++ b/tools/extras/check_dependencies.sh @@ -18,7 +18,7 @@ if ! echo "#include " | gcc -E - >&/dev/null; then add_packages zlib-devel zlib1g-dev fi -for f in make automake libtool autoconf patch awk grep; do +for f in make automake libtool autoconf patch awk grep bzip2 gzip; do if ! which $f >&/dev/null; then echo "$0: $f is not installed." add_packages $f $f @@ -56,7 +56,7 @@ if which apt-get >&/dev/null; then if [ $(readlink /bin/sh) == "dash" ]; then echo "/bin/sh is linked to dash, and currently some of the scripts will not run" echo "properly. We recommend to run:" - echo " sudo ln -s -f dash /bin/sh" + echo " sudo ln -s -f bash /bin/sh" printed=true fi fi