mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-10 23:35:37 +00:00
04362a0ad6
Keep config.pl in Perl in case people are running "perl config.pl".
6 lines
118 B
Perl
Executable file
6 lines
118 B
Perl
Executable file
#!/usr/bin/env perl
|
|
# Backward compatibility redirection
|
|
my $py = $0;
|
|
$py =~ s/\.pl$/.py/;
|
|
exec 'python3', $py, @ARGV
|