What steps will reproduce the problem?
try to compile and run that script ( __END__ part should be included
> cat script.pl
#!./perl -T
print("ok\n");
__END__
> # end
What is the expected output? What do you see instead?
> ./script.bin
Insecure dependency in eval_sv() while running with -T switch.
> ./script
ok
note that we can run the compiled script without the __END__ part
> cat script
#!./perl -T
print("ok\n");
> ./script.bin
ok
Original issue reported on code.google.com by nicolas....@gmail.com on 31 Jan 2014 at 12:20
Original issue reported on code.google.com by
nicolas....@gmail.com
on 31 Jan 2014 at 12:20