aboutsummaryrefslogtreecommitdiffstats
path: root/support/srcdir
blob: 9d8ccd71b039aba0f8874a8096e7f227056fda5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh
#
# srcdir - print out the absolute pathname of the top of the bash source
#	   tree.  Used for getting the right value to makes in subdirectories
#

case "$1" in
'.'|./)	pwd ;;
./*|..*)	echo `pwd`/"$1" ;;
*)	echo "$1" ;;
esac

exit 0