Merge mysql.com:/home/jimw/my/mysql-4.1-10986
into mysql.com:/home/jimw/my/mysql-4.1-clean
This commit is contained in:
commit
a27b5b31fc
@ -60,10 +60,18 @@ fix_path ()
|
|||||||
|
|
||||||
get_full_path ()
|
get_full_path ()
|
||||||
{
|
{
|
||||||
case $1 in
|
file=$1
|
||||||
/*) echo "$1";;
|
|
||||||
./*) tmp=`pwd`/$1; echo $tmp | sed -e 's;/\./;/;' ;;
|
# if the file is a symlink, try to resolve it
|
||||||
*) which $1 ;;
|
if [ -h $file ];
|
||||||
|
then
|
||||||
|
file=`ls -l $file | awk '{ print $NF }'`
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $file in
|
||||||
|
/*) echo "$file";;
|
||||||
|
*/*) tmp=`pwd`/$file; echo $tmp | sed -e 's;/\./;/;' ;;
|
||||||
|
*) which $file ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user