svn commit: r319388 - head/Tools/scripts

Chris Rees crees at FreeBSD.org
Wed May 29 19:20:53 UTC 2013


Author: crees
Date: Wed May 29 19:20:52 2013
New Revision: 319388
URL: http://svnweb.freebsd.org/changeset/ports/319388

Log:
  Require versions of perl supporting smartmatch operator (~~)
  
  Submitted by:	az

Modified:
  head/Tools/scripts/addport

Modified: head/Tools/scripts/addport
==============================================================================
--- head/Tools/scripts/addport	Wed May 29 19:00:34 2013	(r319387)
+++ head/Tools/scripts/addport	Wed May 29 19:20:52 2013	(r319388)
@@ -38,6 +38,9 @@
 # MAINTAINER=	crees at FreeBSD.org
 #
 
+# Smartmatch operator (~~) used
+require 5.10.1;
+
 use Cwd "abs_path";
 use Getopt::Std;
 use Sys::Hostname;


More information about the svn-ports-all mailing list