nikmit has asked for the wisdom of the Perl Monks concerning the following question:
While installing Systemd::Daemon through cpanm, perl 5.22.2 I noticed this warning in the build log:
Insecure dependency in system while running with -T switch at /.../perlbrew/perls/perl-5.22.2/lib/site_perl/5.22.2/IPC/Run3.pm line 403.Looked at line 403 in Run3.pm but it doesn't really tell me anything...
Pasting it in case it is useful even out of context:
402 my $r = ref $cmd 403 ? system { $cmd->[0] } is_win32 ? quote_native( @$cmd + ) : @$cmd 404 : system $cmd;
Hoping to get suggestions on how to decipher that warning, e.g. running -T switch against what app and what is the risk if used?
Edit: Running on Red Hat 7.2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: 'Insecure dependency' warning Systemd::Daemon / IPC::Run3
by Corion (Patriarch) on May 17, 2016 at 09:28 UTC | |
|
Re: 'Insecure dependency' warning Systemd::Daemon / IPC::Run3
by graff (Chancellor) on May 18, 2016 at 02:05 UTC |