diff options
author | markm <markm@FreeBSD.org> | 1998-10-11 17:27:33 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-10-11 17:27:33 +0000 |
commit | 3efdd441fba08d5463cf8202c96832d34636dd33 (patch) | |
tree | ed3d6d890a2d657c88742bc552685bf372557f85 | |
parent | ebd274b809df4ade666853ce6c123221c8b43c33 (diff) | |
download | FreeBSD-src-3efdd441fba08d5463cf8202c96832d34636dd33.zip FreeBSD-src-3efdd441fba08d5463cf8202c96832d34636dd33.tar.gz |
Fix minor bogon pointed out by perl5's own perldoc.
-rw-r--r-- | contrib/perl5/lib/ExtUtils/Liblist.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/perl5/lib/ExtUtils/Liblist.pm b/contrib/perl5/lib/ExtUtils/Liblist.pm index b072c12..c32d452 100644 --- a/contrib/perl5/lib/ExtUtils/Liblist.pm +++ b/contrib/perl5/lib/ExtUtils/Liblist.pm @@ -2,7 +2,7 @@ package ExtUtils::Liblist; use vars qw($VERSION); # Broken out of MakeMaker from version 4.11 -$VERSION = substr q$Revision: 1.25 $, 10; +$VERSION = substr q$Revision: 1.1.1.1 $, 10; use Config; use Cwd 'cwd'; @@ -651,7 +651,7 @@ library to search for otherwise. The C<$Config{lib_ext}> suffix will be appended to any entries that are not directories and don't already have the suffix. -Note that the C<-L> and <-l> prefixes are B<not required>, but authors +Note that the C<-L> and C<-l> prefixes are B<not required>, but authors who wish their extensions to be portable to Unix or OS/2 should use the prefixes, since the Unix-OS/2 version of ext() requires them. |