[20384] in Athena Bugs
Re: Errors reported on incorrect line
daemon@ATHENA.MIT.EDU (Jacob Morzinski)
Wed Jun 12 15:36:03 2002
To: bbermack@MIT.EDU
Cc: perlbug@perl.com, bugs@MIT.EDU
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII
From: Jacob Morzinski <jmorzins@MIT.EDU>
Date: 12 Jun 2002 15:36:00 -0400
In-Reply-To: bbermack@MIT.EDU's message of "Wed, 12 Jun 2002 11:40:44 -0400 (EDT)"
Message-ID: <w6mlm9knvbz.fsf@multics.mit.edu>
<bbermack@MIT.EDU> writes:
> This is a bug report for perl from bbermack@mit.edu,
> generated with the help of perlbug 1.28 running under perl v5.6.0.
[...]
> ================================================================
> #!/usr/bin/perl -w
>
> use strict;
Note that although perlbug was indeed run under perl v5.6.0,
I believe that bbermack's error happened under perl v5.005_03.
In our environment, we have both a vendor-installed Perl, which
is /usr/bin/perl, and a locally-built Perl, which is
/usr/athena/bin/perl. "perlbug" is ours and is version
5.6, but /usr/bin/perl is the vendor's and is version 5.005.
See the "#!" line of bbermack's script, and the following:
% where perlbug
/usr/athena/bin/perlbug
% head -1 /usr/athena/bin/perlbug
#!/usr/athena/bin/perl
% where perl
/usr/athena/bin/perl
/usr/bin/perl
% /usr/athena/bin/perl -MConfig -e 'print Config::config_vars("version")'
version='5.6.0';
% /usr/bin/perl -MConfig -e 'print Config::config_vars("version")'
version='5.00503';
Sincerely,
Jacob Morzinski jmorzins@mit.edu