commit | 6cf3127527060f1d861dc9bf1666329c09aea631 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Mon Jul 29 23:42:50 2019 +0200 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Fri Sep 13 11:04:23 2019 +0200 |
tree | 6d25274e23a4c4ebc829b6a164979d69f554b6a9 | |
parent | 98eb36557d53d89698391f49593a6b6e5b56fc99 [diff] [blame] |
Report an error if switching to Python fails
diff --git a/scripts/config.pl b/scripts/config.pl index bd6c7e5..4f6df09 100755 --- a/scripts/config.pl +++ b/scripts/config.pl
@@ -2,4 +2,6 @@ # Backward compatibility redirection my $py = $0; $py =~ s/\.pl$/.py/; -exec 'python3', $py, @ARGV +exec 'python3', $py, @ARGV; +print STDERR "$0: python3: $!\n"; +exit 127;