diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2015-07-09 06:49:28 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2015-07-09 06:49:28 +0000 |
commit | 6fd5465bd2b35d9bee9e8e9912ed40f57788ffc5 (patch) | |
tree | 4e9d3fdd3cfd7603483bf4880de1dab9e9987ff3 /Tools | |
parent | 7da5d5bb79dbde7dea75e7b05be4fd82db010ae3 (diff) | |
download | ports-6fd5465bd2b35d9bee9e8e9912ed40f57788ffc5.tar.gz ports-6fd5465bd2b35d9bee9e8e9912ed40f57788ffc5.zip |
Invoke perl with /usr/bin/env
Notes
Notes:
svn path=/head/; revision=391618
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/splitpatch.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/splitpatch.pl b/Tools/scripts/splitpatch.pl index ddac4b33394c..28c9b13d5a48 100755 --- a/Tools/scripts/splitpatch.pl +++ b/Tools/scripts/splitpatch.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl -w +#! /usr/bin/env perl # ---------------------------------------------------------------------------- # "THE BEER-WARE LICENSE" (Revision 42) # <tobez@FreeBSD.org> wrote this file. As long as you retain this notice you @@ -8,6 +8,7 @@ # # $FreeBSD$ use strict; +use warnings; # good tests: # /usr/ports/archivers/zoo/files/patch-aa (context diff) |