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
parent 6c14889699
commit 7f4cbd51d0

View File

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