From 3747b0eeec792e201b8293ac89ef17d2b71cb181 Mon Sep 17 00:00:00 2001 From: Bastian Therres Date: Wed, 7 Nov 2012 10:18:46 +0100 Subject: [PATCH] Update bin/installDeps.sh comment on ggrep --- bin/installDeps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 188e3bd1a..15731ae91 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -8,10 +8,10 @@ if [ -d "../bin" ]; then cd "../" fi -#Is ggrep installed on SunOS (Solaris) +#Is gnu-grep (ggrep) installed on SunOS (Solaris) if [ $(uname) = "SunOS" ]; then hash ggrep > /dev/null 2>&1 || { - echo "Please install ggrep" >&2 + echo "Please install ggrep (pkg install gnu-grep)" >&2 exit 1 } fi