Update bin/installDeps.sh

comment on ggrep
This commit is contained in:
Bastian Therres 2012-11-07 10:18:46 +01:00
parent d0aabfc152
commit 3747b0eeec

View file

@ -8,10 +8,10 @@ if [ -d "../bin" ]; then
cd "../" cd "../"
fi fi
#Is ggrep installed on SunOS (Solaris) #Is gnu-grep (ggrep) installed on SunOS (Solaris)
if [ $(uname) = "SunOS" ]; then if [ $(uname) = "SunOS" ]; then
hash ggrep > /dev/null 2>&1 || { hash ggrep > /dev/null 2>&1 || {
echo "Please install ggrep" >&2 echo "Please install ggrep (pkg install gnu-grep)" >&2
exit 1 exit 1
} }
fi fi