Index: /trunk/ippScripts/scripts/dist_bundle.pl
===================================================================
--- /trunk/ippScripts/scripts/dist_bundle.pl	(revision 38563)
+++ /trunk/ippScripts/scripts/dist_bundle.pl	(revision 38564)
@@ -201,4 +201,19 @@
 
     my $file_name = $file->{name};
+
+    # look for file names that were processed remotely (LANL or UH Cray for example)
+    # and change them to nebulous names
+    if ( !($file_name =~ '^neb:') ) {
+        # XXX: These two definitions should probably live in a config file
+        my @remote_paths_to_replace =  ('/lus/scratch/watersc', '/scratch3/watersc1');
+        my $local_path = 'neb://any';
+        # find filenames that begin with the remote paths and change them to a nebulous path
+        foreach my $remote_path (@remote_paths_to_replace) {
+            if ($file_name =~ "^$remote_path") {
+                $file_name =~ s{^$remote_path}{$local_path};
+                last;
+            }
+        }
+    }
     my $path = $ipprc->file_resolve($file_name);
 
