summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/common.ml
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-09-30 17:48:40 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-09-30 17:48:40 +0000
commiteac85b5363a054499d04928741f98498228699ec (patch)
treedcc119a08cb50c18d44fc818d5779a0fadfebf27 /perl_checker.src/common.ml
parent6052fd382e639cb30feba5eb4a3b276ba0ec5c43 (diff)
downloadperl-MDK-Common-eac85b5363a054499d04928741f98498228699ec.tar
perl-MDK-Common-eac85b5363a054499d04928741f98498228699ec.tar.gz
perl-MDK-Common-eac85b5363a054499d04928741f98498228699ec.tar.bz2
perl-MDK-Common-eac85b5363a054499d04928741f98498228699ec.tar.xz
perl-MDK-Common-eac85b5363a054499d04928741f98498228699ec.zip
use absolute directories in Tree.use_lib
Diffstat (limited to 'perl_checker.src/common.ml')
-rw-r--r--perl_checker.src/common.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl_checker.src/common.ml b/perl_checker.src/common.ml
index 9286857..4a7f950 100644
--- a/perl_checker.src/common.ml
+++ b/perl_checker.src/common.ml
@@ -829,7 +829,9 @@ let expand_symlinks file =
| _ -> internal_error (Printf.sprintf "expand_symlinks: %s is relative\n" file)
let file_to_absolute_file file =
- if file.[0] = '/' then file else expand_symlinks (Unix.getcwd() ^ "/" ^ file)
+ if file.[0] = '/' then file else
+ let cwd = Unix.getcwd() in
+ if file = "." then cwd else expand_symlinks (cwd ^ "/" ^ file)
let mtime f = int_of_float ((Unix.stat f).Unix.st_mtime)