Index: /trunk/ippScripts/scripts/ipp_image_path.pl
===================================================================
--- /trunk/ippScripts/scripts/ipp_image_path.pl	(revision 17668)
+++ /trunk/ippScripts/scripts/ipp_image_path.pl	(revision 17669)
@@ -77,24 +77,8 @@
         my ($scheme) = $uri =~/^(path|neb|file):/;
 
-        # XXX: I'd like to just use file_resolve but it doesn't currently
-        # work for nebulous paths
         if (!$scheme) {
             $path =  $uri;
         } else {
-            if (lc($scheme) ne "neb") {
-                $path = $ipprc->file_resolve($uri);
-            } else {
-                # use neb-locate
-                my $command = "$neb_locate $uri";
-                my ($success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
-                    run(command => $command, verbose => $verbose);
-                unless ($success) {
-                    $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
-                    warn ("Unable to run $command: $error_code");
-                    exit($error_code);
-                }
-                $path = "@$stdout_buf";
-                chomp $path;
-            }
+            $path = $ipprc->file_resolve($uri);
         }
         if ($path) {
