don't let the shell interfere with the process return value
p4raw-id: //depot/perl@24506
# Run some code, return its wait status.
sub run {
my($code) = shift;
- my $cmd = "$^X -e ";
- return system($cmd.$quote.$code.$quote);
+ return system($^X, "-e", $code);
}
BEGIN {