summaryrefslogtreecommitdiffstats
path: root/perl-install/run_program.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-12-29 07:47:36 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-12-29 07:47:36 +0000
commit285341e1db0de6a88bf80636cd457f4e6a314d6a (patch)
treef445e9cfdb8de69a29095a3954ea17cd6daf3d17 /perl-install/run_program.pm
parentd59fa1ca3704c6273da6b5c0e13cf93a12a47b27 (diff)
downloaddrakx-285341e1db0de6a88bf80636cd457f4e6a314d6a.tar
drakx-285341e1db0de6a88bf80636cd457f4e6a314d6a.tar.gz
drakx-285341e1db0de6a88bf80636cd457f4e6a314d6a.tar.bz2
drakx-285341e1db0de6a88bf80636cd457f4e6a314d6a.tar.xz
drakx-285341e1db0de6a88bf80636cd457f4e6a314d6a.zip
fix to enable drakconnect to be run in "install" mode while being a standalone
tool
Diffstat (limited to 'perl-install/run_program.pm')
-rw-r--r--perl-install/run_program.pm2
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);