diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2015-07-09 14:49:28 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2015-07-09 14:49:28 +0800 |
commit | fd35a4cb8a3b0c2eaa7d9dc230677ca0a1f337cf (patch) | |
tree | 4e9d3fdd3cfd7603483bf4880de1dab9e9987ff3 /Tools | |
parent | 31583252c5950c9284f2b068f308bdaf3c1cdf23 (diff) | |
download | freebsd-ports-gnome-fd35a4cb8a3b0c2eaa7d9dc230677ca0a1f337cf.tar.gz freebsd-ports-gnome-fd35a4cb8a3b0c2eaa7d9dc230677ca0a1f337cf.tar.zst freebsd-ports-gnome-fd35a4cb8a3b0c2eaa7d9dc230677ca0a1f337cf.zip |
Invoke perl with /usr/bin/env
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) |