[svn:parrot] r41996 - in trunk: config/init/hints lib/Parrot

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Oct 21 21:49:51 UTC 2009


Author: mikehh
Date: Wed Oct 21 21:49:38 2009
New Revision: 41996
URL: https://trac.parrot.org/parrot/changeset/41996

Log:
fix codetest failure - replace hard tabs with spaces

Modified:
   trunk/config/init/hints/netbsd.pm
   trunk/lib/Parrot/Test.pm

Modified: trunk/config/init/hints/netbsd.pm
==============================================================================
--- trunk/config/init/hints/netbsd.pm	Wed Oct 21 21:44:16 2009	(r41995)
+++ trunk/config/init/hints/netbsd.pm	Wed Oct 21 21:49:38 2009	(r41996)
@@ -23,14 +23,14 @@
         $libs .= ' -lpthread';
     }
     $conf->data->set(
-	libs => $libs,
-	rpath => '-Wl,-R',
+    libs => $libs,
+    rpath => '-Wl,-R',
 
-	has_dynamic_linking    => 1,
-	parrot_is_shared       => 1,
-	libparrot_shared       => "libparrot$share_ext.$version",
-	libparrot_shared_alias => "libparrot$share_ext",
-	libparrot_soname       => "-Wl,-soname=libparrot$share_ext.$version",
+    has_dynamic_linking    => 1,
+    parrot_is_shared       => 1,
+    libparrot_shared       => "libparrot$share_ext.$version",
+    libparrot_shared_alias => "libparrot$share_ext",
+    libparrot_soname       => "-Wl,-soname=libparrot$share_ext.$version",
     );
 }
 

Modified: trunk/lib/Parrot/Test.pm
==============================================================================
--- trunk/lib/Parrot/Test.pm	Wed Oct 21 21:44:16 2009	(r41995)
+++ trunk/lib/Parrot/Test.pm	Wed Oct 21 21:49:38 2009	(r41996)
@@ -1045,10 +1045,10 @@
                     . "$PConfig{ld_out}$exe_f "
                     . "$obj_f $cfg "
                     . "$PConfig{libparrot_linkflags} "
-		    # If rpath is defined (and therefore rpath_blib), use it to get at the build libraries
-		    . ( defined($PConfig{rpath_blib})
-			? (  $PConfig{rpath_blib} . " " )
-			: "" )
+            # If rpath is defined (and therefore rpath_blib), use it to get at the build libraries
+            . ( defined($PConfig{rpath_blib})
+            ? (  $PConfig{rpath_blib} . " " )
+            : "" )
                     . "$PConfig{linkflags} $PConfig{ld_debug} "
                     . "$iculibs $PConfig{libs}";
                 my $exit_code = run_command(


More information about the parrot-commits mailing list