From 52f10d9b470fff366dd7f265272ee3b2235aa53b Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 5 Apr 2004 15:07:44 +0000 Subject: [PATCH] Initial version. --- configure/tools/fullPathName.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 configure/tools/fullPathName.pl diff --git a/configure/tools/fullPathName.pl b/configure/tools/fullPathName.pl new file mode 100755 index 000000000..17d04c4a8 --- /dev/null +++ b/configure/tools/fullPathName.pl @@ -0,0 +1,8 @@ +eval 'exec perl -S -w $0 ${1+"$@"}' # -*- Mode: perl -*- + if 0; + +use Cwd 'abs_path'; +my $dir; +$dir = abs_path("$ARGV[0]"); +print "$dir\n"; +