mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-04-04 22:19:05 +00:00
Compatibility redirect: if python3 is not available, try python
This commit is contained in:
parent
261742bd59
commit
518ce0beb3
1 changed files with 2 additions and 0 deletions
|
|
@ -4,4 +4,6 @@ my $py = $0;
|
|||
$py =~ s/\.pl$/.py/;
|
||||
exec 'python3', $py, @ARGV;
|
||||
print STDERR "$0: python3: $!\n";
|
||||
exec 'python', $py, @ARGV;
|
||||
print STDERR "$0: python: $!\n";
|
||||
exit 127;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue