This is a follow-up,
For the benefit of those who wish to debug the Base.pm file but do not run
Debian systems, here are the contents of that file (it's a pretty small
file):
#!/usr/bin/perl -w
# This file was preprocessed, do not edit directly.
package Debconf::Base;
use Debconf::Log ':all';
use strict;
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
my $this=bless ({@_}, $class);
$this->init;
return $this;
}
sub init {}
sub AUTOLOAD : lvalue {
(my $field = our $AUTOLOAD) =~ s/.*://;
no strict 'refs';
*$AUTOLOAD = sub : lvalue {
my $this=shift;
$this->{$field}=shift if @_;
$this->{$field}=undef unless exists $this->{$field};
$this->{$field};
};
goto &$AUTOLOAD;
}
sub DESTROY {
}
1
--> Jijo
--
Federico Sevilla III :: [EMAIL PROTECTED]
Network Administrator :: The Leather Collection, Inc.
_
Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph
To leave: send "unsubscribe" in the body to [EMAIL PROTECTED]
To subscribe to the Linux Newbies' List: send "subscribe" in the body to
[EMAIL PROTECTED]