diff options
author | Norbert Preining <preining@logic.at> | 2009-06-06 17:14:56 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-06 17:14:56 +0000 |
commit | 4aa3f4467e05c4ed9c8156d0f856c2bbca13b60e (patch) | |
tree | cd51ace5dd9f00e9f852a31e814dbe9dae493b14 /Master/tlpkg/TeXLive | |
parent | e08ed8299a4973061c37dd704f8bdbd7db8c8fce (diff) |
fix error about missing abs_path
git-svn-id: svn://tug.org/texlive/trunk@13647 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index caf3b02fad2..3f61fea0998 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -950,7 +950,7 @@ sub removed_dirs for my $f (@files) { # what should we do with not existing entries???? next if (! -r "$f"); - my $abs_f = abs_path ($f); + my $abs_f = Cwd::abs_path ($f); if (!$abs_f) { warn ("oops, no abs_path($f) from " . `pwd`); next; |