Author: petdance Date: Fri Dec 26 21:32:46 2008 New Revision: 34405 Modified: trunk/tools/build/ops2c.pl
Log: no need to have an import on ::Utils Modified: trunk/tools/build/ops2c.pl ============================================================================== --- trunk/tools/build/ops2c.pl (original) +++ trunk/tools/build/ops2c.pl Fri Dec 26 21:32:46 2008 @@ -1,11 +1,12 @@ #! perl -# Copyright (C) 2001-2006, The Perl Foundation. +# Copyright (C) 2001-2008, The Perl Foundation. # $Id$ + use warnings; use strict; use lib 'lib'; use Parrot::Ops2c::Auxiliary qw( Usage getoptions ); -use Parrot::Ops2c::Utils; +use Parrot::Ops2c::Utils (); my $flagref = getoptions(); if ( ( not defined $flagref )
