commit | 1854ec45afc7124f286310f97478e7f280bd9f52 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Mon Jul 29 23:42:50 2019 +0200 |
committer | Darryl Green <darryl.green@arm.com> | Wed Nov 13 14:33:34 2019 +0000 |
tree | 8d4233fa4bf0ec0f93cca1b2e9fb5d4a4800efa8 | |
parent | 5d650c86b4e27b294605e17551782a7070b469b6 [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;