diff options
author | Dennis Marsa <dennism@cyrix.com> | 1997-01-17 14:27:32 -0600 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-01-25 15:58:00 +1200 |
commit | 4e1fac241ec3b22746165d8487352faf4fff0db3 (patch) | |
tree | d51ccca81e207104c81611c696e87868d1608bdc /lib | |
parent | 2ba53c5797ec83a657fa7f6809a84f6f770569be (diff) | |
download | perl-4e1fac241ec3b22746165d8487352faf4fff0db3.tar.gz |
Allow MakeMaker 5.34 to use libraries containing '+' in name
Subject: MakeMaker 5.34 and libraries containing '+' characters...
p5p-msgid: <9701172027.AA27861@orion.cyrix.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/Liblist.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm index 9664e54127..59b2efa3ca 100644 --- a/lib/ExtUtils/Liblist.pm +++ b/lib/ExtUtils/Liblist.pm @@ -77,7 +77,8 @@ sub _unix_os2_ext { # For gcc-2.6.2 on linux (March 1995), DLD can not load # .sa libraries, with the exception of libm.sa, so we # deliberately skip them. - if (@fullname = $self->lsdir($thispth,"^lib$thislib\.$so\.[0-9]+")){ + if (@fullname = + $self->lsdir($thispth,"^\Qlib$thislib.$so.\E[0-9]+")){ # Take care that libfoo.so.10 wins against libfoo.so.9. # Compare two libraries to find the most recent version # number. E.g. if you have libfoo.so.9.0.7 and |