Commit 075fd01f authored by unknown's avatar unknown

Merge lgrimmer@build.mysql.com:/home/bk/mysql-4.0

into mysql.com:/space/my/mysql-4.0

parents 5e817c53 b5b61594
......@@ -660,9 +660,9 @@ sub safe_system
print "Executing '@cmd'\n" if $opt{debug};
my $cp_status = system "@cmd > /dev/null";
if ($cp_status != 0) {
warn "Burp ('scuse me). Trying backtick execution...\n" if $opt{debug}; #'
warn "Executing command failed ($cp_status). Trying backtick execution...\n";
## try something else
`@cmd` && die "Error: @cmd failed ($cp_status) while copying files.\n";
`@cmd` || die "Error: @cmd failed ($?) while copying files.\n";
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment