Re: doc errors
- From: Scott Lanning <lannings who int>
- To: gtk-perl-list gnome org
- Subject: Re: doc errors
- Date: Sun, 10 Apr 2005 22:52:40 +0000 (UTC)
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]