svn commit: r391618 - head/Tools/scripts

Emanuel Haupt ehaupt at FreeBSD.org
Thu Jul 9 06:49:29 UTC 2015


Author: ehaupt
Date: Thu Jul  9 06:49:28 2015
New Revision: 391618
URL: https://svnweb.freebsd.org/changeset/ports/391618

Log:
  Invoke perl with /usr/bin/env

Modified:
  head/Tools/scripts/splitpatch.pl

Modified: head/Tools/scripts/splitpatch.pl
==============================================================================
--- head/Tools/scripts/splitpatch.pl	Thu Jul  9 06:36:20 2015	(r391617)
+++ head/Tools/scripts/splitpatch.pl	Thu Jul  9 06:49:28 2015	(r391618)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl
 # ----------------------------------------------------------------------------
 # "THE BEER-WARE LICENSE" (Revision 42)
 # <tobez at 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)


More information about the svn-ports-all mailing list