mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 22:55:39 +01:00
Compatibility redirect: if python3 is not available, try python
This commit is contained in:
parent
f686042554
commit
a103c18032
@ -4,4 +4,6 @@ my $py = $0;
|
|||||||
$py =~ s/\.pl$/.py/;
|
$py =~ s/\.pl$/.py/;
|
||||||
exec 'python3', $py, @ARGV;
|
exec 'python3', $py, @ARGV;
|
||||||
print STDERR "$0: python3: $!\n";
|
print STDERR "$0: python3: $!\n";
|
||||||
|
exec 'python', $py, @ARGV;
|
||||||
|
print STDERR "$0: python: $!\n";
|
||||||
exit 127;
|
exit 127;
|
||||||
|
Loading…
Reference in New Issue
Block a user