don't check config.status if it doesn't exist

add /opt/freeswitch as a prefix to test
fix test for gdb
don't run svn stuff if not in a svn managed directory


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16544 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Rupa Schomaker 2010-02-01 15:29:40 +00:00
parent 54a9eba44d
commit ab9299bc37
1 changed files with 21 additions and 6 deletions

View File

@ -3,14 +3,23 @@
arg=$1 arg=$1
shift shift
prefix=$(cat config.status | grep @prefix@ | awk -F, '{print $3}') if [ -f "config.status" ] ; then
if [ -z "$prefix" ] ; then prefix=$(cat config.status | grep @prefix@ | awk -F, '{print $3}')
fi
if [ -f "config.status" -a -z "$prefix" ] ; then
prefix=$(cat config.status | grep '"prefix"' | awk -F\" '{print $4}') prefix=$(cat config.status | grep '"prefix"' | awk -F\" '{print $4}')
fi fi
if [ -z "$prefix" ] ; then if [ -z "$prefix" -a -d "/usr/local/freeswitch" ] ; then
prefix="/usr/local/freeswitch" prefix="/usr/local/freeswitch"
fi fi
if [ -z "$prefix" -a -d "/opt/freeswitch" ] ; then
prefix="/opt/freeswitch"
fi
if [ -z "$prefix" ] ; then
echo "Unable to locate freeswitch prefix directory."
exit 255
fi
if [ "$arg" = "gcore" ] ; then if [ "$arg" = "gcore" ] ; then
user=$1 user=$1
@ -38,7 +47,9 @@ if [ -z "$core" ] ; then
exit 255 exit 255
fi fi
if [ -z "which gdb" ] ; then if [ -x `which gdb` ] ; then
echo "Found gdb"
else
echo "Unable to locate gdb, is it installed?" echo "Unable to locate gdb, is it installed?"
exit 255 exit 255
fi fi
@ -80,8 +91,12 @@ cat /proc/cpuinfo >> $post_file
echo "SVN INFO:" >> $post_file echo "SVN INFO:" >> $post_file
echo $line >> $post_file echo $line >> $post_file
echo -n "Revision: " >> $post_file echo -n "Revision: " >> $post_file
svnversion . >> $post_file if [ -d ".svn" ] ; then
svn stat | grep -v \? >> $post_file svnversion . >> $post_file
svn stat | grep -v \? >> $post_file
else
echo "Not run from an svn managed directory." >> $post_file
fi
echo "GDB BACKTRACE:" >> $post_file echo "GDB BACKTRACE:" >> $post_file
echo $line >> $post_file echo $line >> $post_file