use strict;
use Carp qw();
use vars qw($VERSION);
-$VERSION = '0.02';
+$VERSION = '0.03';
# Used for generating filehandle globs. IO::File might not be available!
my $fhname = "FH1";
{
chomp $line;
my ($key, @kvs) = split(' ', $line);
- $key =~ s!/./!/!g; # Some .packlists have spurious '/./' bits in the paths
+ $key =~ s!/\./!/!g; # Some .packlists have spurious '/./' bits in the paths
if (! @kvs)
{
$self->{data}->{$key} = undef;
return(@missing);
}
+sub packlist_file($)
+{
+my ($self) = @_;
+$self = tied(%$self) || $self;
+return($self->{packfile});
+}
+
1;
__END__
from the internal hash. The return value is a list of the missing files, which
will be empty if they all exist.
+=item packlist_file()
+
+This returns the name of the associated .packlist file
+
=back
=head1 AUTHOR