mbedtls/scripts/config.pl
2019-11-13 14:33:34 +00:00

8 lines
163 B
Perl
Executable file

#!/usr/bin/env perl
# Backward compatibility redirection
my $py = $0;
$py =~ s/\.pl$/.py/;
exec 'python3', $py, @ARGV;
print STDERR "$0: python3: $!\n";
exit 127;