Try putting a semicolon after the "1" that's all alone on its own line.
On Sat, 30 Jun 2001, Federico Sevilla III wrote:
..
> 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]
>
--
Orlando Andico <[EMAIL PROTECTED]>
Mosaic Communications, Inc.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GE d(-) s: a-25 C++++ UBLSI++++$ P+++ L+++>++++ E- W++ N(+)
o K? w O-- M- !V PS(++) PE- Y PGP-- t(+)@ 5(+) X++@ R(+) tv@
b++ DI++ G e++@ h--(*) r% y+
------END GEEK CODE BLOCK------
_
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]