Re: doc errors



In ExtUtils::Depends, it says

  $depends->set_libs (@newlibs)

  Add strings to the libs (linker flags) variable.

but the method only accepts the first parameter:

  sub set_libs {
        my ($self, $newlibs) = @_;
        $self->{libs} = $newlibs;
  }

Possibly it should be

        my ($self, @newlibs) = @_;
        $self->{libs} = "@newlibs";



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]