1#!/bin/sh
2#
3# check_gdb
4#
5# RCS $Id: check_gdb,v 1.1 2015/05/11 15:02:09 root Exp root $
6
7GDB="$1"
8
9if [ ! -x "$1" ]
10then
11   echo "The gdb command is not installed on this system.   *****"
12   echo "The gdb command is important to analyze an eventual crash of ufdbguardd."
13   echo "Although crashes of ufdbguardd happen very rarely, it is the output of gdb that enables finding the root cause of the crash"
14   echo "Install gdb and redo the configure and make procedure"
15fi
16
17