Re: Missing a PERL module called 'concat'

2003-01-28 Thread Walt Mankowski
On Tue, Jan 28, 2003 at 05:54:20PM -0600, Keith Steensma wrote: > I've installed a very minimum Debian 'testing' system. > > I trying to run a perl script that uses a 'concat' function. I can't > find it as a built-in function of the language nor can I find it in the > Debian packages list. >

Re: Missing a PERL module called 'concat'

2003-01-28 Thread David Z Maze
Keith Steensma <[EMAIL PROTECTED]> writes: > I trying to run a perl script that uses a 'concat' function. I can't > find it as a built-in function of the language nor can I find it in > the Debian packages list. > > The error is - > Undefined subroutine &main::concat called at ./mbox2maildir.pl li

Re: Missing a PERL module called 'concat'

2003-01-28 Thread Andrew Perrin
Where is the "concat" function supposed to come from? The error you reference means that, on line 31 of the script, you call a function called "concat". Perl assumes that unqualified function names are in the main namespace, which is why it looks for &main::concat : & refers to a function, main to

Missing a PERL module called 'concat'

2003-01-28 Thread Keith Steensma
I've installed a very minimum Debian 'testing' system. I trying to run a perl script that uses a 'concat' function. I can't find it as a built-in function of the language nor can I find it in the Debian packages list. The error is - Undefined subroutine &main::concat called at ./mbox2maildir.p