diff options
-rw-r--r-- | perl-install/run_program.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm index 0a53ffa39..d53c26007 100644 --- a/perl-install/run_program.pm +++ b/perl-install/run_program.pm @@ -47,7 +47,7 @@ sub raw { return 1 if $root && $<; $root ? ($root .= '/') : ($root = ''); - install_any::check_prog(ref($name) ? $name->[0] : $name) if !$root && $::isInstall; + install_any::check_prog(ref($name) ? $name->[0] : $name) if !$root && !$::isStandalone; my ($stdout_raw, $stdout_mode, $stderr_raw, $stderr_mode); |