Andrew Pennebaker wrote:
> $ head `which cpan`
> #!/usr/local/bin/perl
>
> use 5.006;
> use strict;
> use vars qw($VERSION);
>
> use App::Cpan;
> $VERSION = '1.5902';
>   
Maybe you didn't run some installer script -- it patches those files:

> head $(which cpan)
#!/usr/bin/perl
    eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
        if $running_under_some_shell;
#!/usr/local/bin/perl
use strict;
use vars qw($VERSION);

use App::Cpan;
$VERSION = '1.57';
---
Note, I get the above output on both my linux and cygwin box...



>   

Reply via email to