removed filtering for arch specific files when dealing with remote nodes
Tyler Riddle [Tue, 11 Sep 2012 20:25:53 +0000 (13:25 -0700)]
lib/Object/Remote/FatNode.pm
lib/Object/Remote/ModuleSender.pm

index 845c12b..d76a21d 100644 (file)
@@ -45,7 +45,7 @@ my @non_core_non_arch = grep +(
     /^\Q$Config{privlibexp}/ or /^\Q$Config{archlibexp}/
     or /^\Q$Config{vendorarchexp}/ or /^\Q$Config{sitearchexp}/
   )
-), grep !/\Q$Config{archname}/, grep !/\Q$Config{myarchname}/, keys %mods;
+), keys %mods;
 
 my @core_non_arch = grep +(
   /^\Q$Config{privlibexp}/
index f33a1d5..6fe0927 100644 (file)
@@ -11,7 +11,7 @@ sub _build_dir_list {
   my %core = map +($_ => 1), grep $_, @Config{
     qw(privlibexp archlibexp vendorarchexp sitearchexp)
   };
-  [ grep !/\Q$Config{archname}/, grep !/\Q$Config{myarchname}/, grep !$core{$_}, @INC ];
+  [ grep !$core{$_}, @INC ];
 }
 
 sub source_for {