[svn:parrot] r46862 - branches/ops_pct/config/auto

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri May 21 16:01:49 UTC 2010


Author: mikehh
Date: Fri May 21 16:01:49 2010
New Revision: 46862
URL: https://trac.parrot.org/parrot/changeset/46862

Log:
fix perlcritic failure - hard tabs

Modified:
   branches/ops_pct/config/auto/extra_nci_thunks.pm

Modified: branches/ops_pct/config/auto/extra_nci_thunks.pm
==============================================================================
--- branches/ops_pct/config/auto/extra_nci_thunks.pm	Fri May 21 15:41:38 2010	(r46861)
+++ branches/ops_pct/config/auto/extra_nci_thunks.pm	Fri May 21 16:01:49 2010	(r46862)
@@ -22,7 +22,7 @@
 sub _init {
     my $self = shift;
     return {
-	description => 'Determine whether to build extra NCI thunks',
+        description => 'Determine whether to build extra NCI thunks',
     };
 }
 
@@ -31,14 +31,14 @@
     my $without = $conf->options->get( 'without-extra-nci-thunks' );
 
     if ($without) {
-	$conf->data->set( has_extra_nci_thunks => 0 );
-	$conf->data->set( HAS_EXTRA_NCI_THUNKS => 0 );
-	$self->set_result( 'no' );
+        $conf->data->set( has_extra_nci_thunks => 0 );
+        $conf->data->set( HAS_EXTRA_NCI_THUNKS => 0 );
+        $self->set_result( 'no' );
     }
     else {
-	$conf->data->set( has_extra_nci_thunks => 1 );
-	$conf->data->set( HAS_EXTRA_NCI_THUNKS => 1 );
-	$self->set_result( 'yes' );
+        $conf->data->set( has_extra_nci_thunks => 1 );
+        $conf->data->set( HAS_EXTRA_NCI_THUNKS => 1 );
+        $self->set_result( 'yes' );
     }
 
     return 1;


More information about the parrot-commits mailing list