diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-24 16:45:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-24 16:45:10 +0000 |
commit | 96a44ec69287273eaa346a8ebc3dafea651a4d1e (patch) | |
tree | 12a8a195e6599ef0b2db091bf8e82aa5995220ba /perl-install/run_program.pm | |
parent | 851ca8f056135ff7edd9c19705ba2a4870887775 (diff) | |
download | drakx-96a44ec69287273eaa346a8ebc3dafea651a4d1e.tar drakx-96a44ec69287273eaa346a8ebc3dafea651a4d1e.tar.gz drakx-96a44ec69287273eaa346a8ebc3dafea651a4d1e.tar.bz2 drakx-96a44ec69287273eaa346a8ebc3dafea651a4d1e.tar.xz drakx-96a44ec69287273eaa346a8ebc3dafea651a4d1e.zip |
no_comment
Diffstat (limited to 'perl-install/run_program.pm')
-rw-r--r-- | perl-install/run_program.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm index 593b270d8..40a853764 100644 --- a/perl-install/run_program.pm +++ b/perl-install/run_program.pm @@ -44,12 +44,12 @@ sub rooted { if (ref $name) { unless (exec { $name->[0] } $name->[1], @args) { log::l("exec of $name->[0] failed: $!"); - exec('false') or exit(1); + c::_exit(1); } } else { unless (exec $name, @args) { log::l("exec of $name failed: $!"); - exec('false') or exit(1); + c::_exit(1); } } |