in reply to Re: Re: renaming a package
in thread renaming a package

Yes, put the use Log::Writer on the same line as I showed. MakeMaker extracts a single line from the file and eval's it; without the "use" on the same line, $Log::Writer::VERSION will be undefined (because MakeMaker won't have use'd it).

Replies are listed 'Best First'.
Re: Re: Re: Re: renaming a package
by mifflin (Curate) on Apr 30, 2004 at 22:21 UTC
    you're a saint!
    thanks much.