diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-01-20 22:33:22 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-01-20 22:33:22 +0000 |
commit | 8da345b4bb05e4eb316bab08ee2c684fa8dd3215 (patch) | |
tree | f08daf1460187c4e467a306469a4a49e249a53e5 | |
parent | c76d38a6ee31c52e392e50e33fa70904280bfe5d (diff) |
TLUtils.pm::basename: small fix.
git-svn-id: svn://tug.org/texlive/trunk@6339 c570f23f-e606-0410-a88d-b1316a301751
-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 be36b02ef70..470ba93b168 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -388,7 +388,7 @@ sub basename { $path=~m!.*/(.*)!; return $1; } else { # basename("ignore") -> "ignore" - return $_[0]; + return $path; } } |