http://qs1969.pair.com?node_id=298379


in reply to Re: Re: ExtUtils::ModuleMaker
in thread ExtUtils::ModuleMaker

If you execute this script in the same directory as it and you don't pass any parameters, your Usage() doesn't construct $prog correctly.
my ($prog) = $0 =~ /\/([^\/]+)$/; ---- Change to: use File::Basename; ... my ($prog) = basename($0);

------
We are the carpenters and bricklayers of the Information Age.

The idea is a little like C++ templates, except not quite so brain-meltingly complicated. -- TheDamian, Exegesis 6

Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.