>From PkgVersion.pm:

### binary package finding

sub find_debfile {
  my $self = shift;
  my ($path, $fn);

  foreach $path (@{$self->{_debpaths}}, "$basepath/fink/debs") {
    $fn = $path."/".$self->{_debname};
    if (-f $fn) {
      return $fn;
    }
  }
  return undef;
}


So... in addition to checking the paths which it currently thinks are
valid places that a deb might be installed, it looks in /sw/fink/debs...
This could be useful, for example, if you change your "Trees" around:
previously compiled debs, whose paths are no longer referenced in the
Trees line, can be found.

Note that if it doesn't find a deb in the location, there is no harm done.

  -- Dave


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to