Replacing File::Basename with custom hack.

Thanks to Joe Hewitt <hewitt@netscape.com> for the patch.
Bug #107474 r=cls
This commit is contained in:
seawood%netscape.com 2001-10-30 23:57:14 +00:00
Родитель cbe8e4729c
Коммит a998043b43
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -123,7 +123,8 @@ while (<JARFILE>)
if (!$1 || $1 eq "") if (!$1 || $1 eq "")
{ {
$chromefile = $_; $chromefile = $_;
$cvsfile = File::Basename->basename($_); $_ =~ /.*\/(.*?)$/;
$cvsfile = $1;
} }
# Convert to platform-specific separator for the chrome version. # Convert to platform-specific separator for the chrome version.