summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/run_program.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm
index a0a966efa..f56c59f4d 100644
--- a/perl-install/run_program.pm
+++ b/perl-install/run_program.pm
@@ -56,12 +56,12 @@ sub rooted {
if (ref $name) {
unless (exec { $name->[0] } $name->[1], @args) {
log::l("exec of $name->[0] failed: $!");
- c::_exit(1);
+ c::_exit(128);
}
} else {
unless (exec $name, @args) {
log::l("exec of $name failed: $!");
- c::_exit(1);
+ c::_exit(128);
}
}