[svn:parrot] r46606 - branches/ops_pct/tools/build

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri May 14 11:54:34 UTC 2010


Author: mikehh
Date: Fri May 14 11:54:33 2010
New Revision: 46606
URL: https://trac.parrot.org/parrot/changeset/46606

Log:
fix perlcritic failure - missing use strict/use warnings

Modified:
   branches/ops_pct/tools/build/ops2c.pl

Modified: branches/ops_pct/tools/build/ops2c.pl
==============================================================================
--- branches/ops_pct/tools/build/ops2c.pl	Fri May 14 11:39:07 2010	(r46605)
+++ branches/ops_pct/tools/build/ops2c.pl	Fri May 14 11:54:33 2010	(r46606)
@@ -1,7 +1,10 @@
 #! perl
-# Copyright (C) 2001-2008, Parrot Foundation.
+# Copyright (C) 2001-2010, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 warn 'ops2c.pl is deprecated. Use ops2c$(EXE) instead';
 # Ignore "core"
 shift @ARGV;


More information about the parrot-commits mailing list