diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-04-09 08:38:08 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-05-28 09:19:27 +0200 |
commit | 551dc3741cd19f08b426fb3a6fdeecd79e3179be (patch) | |
tree | 39732a02e2d161428274e0c8a1d16bfb961f6e51 /Porting/bisect-runner.pl | |
parent | 8245f0865186037cea2822e4b1638fed30dc9c27 (diff) | |
download | perl-551dc3741cd19f08b426fb3a6fdeecd79e3179be.tar.gz |
bisect-runner.pl should use ".$Config{dlext}" instead of hard-coding ".so".
Diffstat (limited to 'Porting/bisect-runner.pl')
-rwxr-xr-x | Porting/bisect-runner.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index d0be2e5f68..434bb371a0 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -918,7 +918,7 @@ unless (extract_from_file('Configure', 'ignore_versioned_solibs')) { foreach my $lib (qw(sfio socket inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun m crypt sec util c cposix posix ucb BSD)) { foreach my $dir (@paths) { - next unless -f "$dir/lib$lib.so"; + next unless -f "$dir/lib$lib.$Config{dlext}"; push @libs, "-l$lib"; last; } |