Backport 2.7: Use "#!/usr/bin/env perl" as shebang line.

This commit is contained in:
fbrosson 2018-04-04 22:26:56 +00:00
parent be97c9cc85
commit 3a7457136e
20 changed files with 21 additions and 19 deletions

View File

@ -58,6 +58,8 @@ Changes
* Improve robustness of mbedtls_ssl_derive_keys against the use of * Improve robustness of mbedtls_ssl_derive_keys against the use of
HMAC functions with non-HMAC ciphersuites. Independently contributed HMAC functions with non-HMAC ciphersuites. Independently contributed
by Jiayuan Chen in #1377. Fixes #1437. by Jiayuan Chen in #1377. Fixes #1437.
* Change the shebang line in Perl scripts to look up perl in the PATH.
Contributed by fbrosson in #1533.
= mbed TLS 2.7.2 branch released 2018-03-16 = mbed TLS 2.7.2 branch released 2018-03-16

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
# This file is part of mbed TLS (https://tls.mbed.org) # This file is part of mbed TLS (https://tls.mbed.org)
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# Generate error.c # Generate error.c
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
use strict; use strict;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# Generate files for MS Visual Studio: # Generate files for MS Visual Studio:
# - for VS6: main project (library) file, individual app files, workspace # - for VS6: main project (library) file, individual app files, workspace

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# Parse a massif.out.xxx file and output peak total memory usage # Parse a massif.out.xxx file and output peak total memory usage

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
# This file is part of mbed TLS (https://tls.mbed.org) # This file is part of mbed TLS (https://tls.mbed.org)
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# Detect comment blocks that are likely meant to be doxygen blocks but aren't. # Detect comment blocks that are likely meant to be doxygen blocks but aren't.
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# curves.pl # curves.pl
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# depends-hashes.pl # depends-hashes.pl
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# depends-pkalgs.pl # depends-pkalgs.pl
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
# Based on NIST CTR_DRBG.rsp validation file # Based on NIST CTR_DRBG.rsp validation file
# Only uses AES-256-CTR cases that use a Derivation function # Only uses AES-256-CTR cases that use a Derivation function

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
# Based on NIST gcmDecryptxxx.rsp validation files # Based on NIST gcmDecryptxxx.rsp validation files
# Only first 3 of every set used for compile time saving # Only first 3 of every set used for compile time saving

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
# Based on NIST gcmEncryptIntIVxxx.rsp validation files # Based on NIST gcmEncryptIntIVxxx.rsp validation files
# Only first 3 of every set used for compile time saving # Only first 3 of every set used for compile time saving

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# #
use strict; use strict;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# key-exchanges.pl # key-exchanges.pl
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
use warnings; use warnings;
use strict; use strict;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# Find functions making recursive calls to themselves. # Find functions making recursive calls to themselves.
# (Multiple recursion where a() calls b() which calls a() not covered.) # (Multiple recursion where a() calls b() which calls a() not covered.)

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# run-test-suites.pl # run-test-suites.pl
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# test-ref-configs.pl # test-ref-configs.pl
# #