mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 09:35:39 +01: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
|