diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-10-02 16:25:40 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-10-02 16:25:40 +0200 |
commit | 39b6bf47cedf362390469a2cd7aadf123adc8033 (patch) | |
tree | cfedff29813d84eba730362b348db82024f79f03 /ACE/examples | |
parent | 44a6cb570564dd58e71eedb1fc1975df048fcbf9 (diff) | |
download | ATCD-39b6bf47cedf362390469a2cd7aadf123adc8033.tar.gz |
Use #!/usr/bin/env perl as perl shebang for portability, see https://stackoverflow.com/questions/10376206/what-is-the-preferred-bash-shebang and https://github.com/conda-forge/staged-recipes/pull/12698
* ACE/bin/depgen.pl:
* ACE/bin/generate_export_file.pl:
* ACE/bin/mpc.pl:
* ACE/bin/mwc.pl:
* ACE/bin/split-cpp.pl:
* ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl:
* ACE/examples/IPC_SAP/SSL_SAP/summarize.pl:
Diffstat (limited to 'ACE/examples')
-rwxr-xr-x | ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl | 2 | ||||
-rwxr-xr-x | ACE/examples/IPC_SAP/SSL_SAP/summarize.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl b/ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl index c4c093570ce..aea2285cbb4 100755 --- a/ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl +++ b/ACE/examples/IPC_SAP/SOCK_SAP/summarize.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/env perl eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}' & eval 'exec perl -w -S $0 $argv:q' if 0; diff --git a/ACE/examples/IPC_SAP/SSL_SAP/summarize.pl b/ACE/examples/IPC_SAP/SSL_SAP/summarize.pl index c4c093570ce..aea2285cbb4 100755 --- a/ACE/examples/IPC_SAP/SSL_SAP/summarize.pl +++ b/ACE/examples/IPC_SAP/SSL_SAP/summarize.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/env perl eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}' & eval 'exec perl -w -S $0 $argv:q' if 0; |