diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-11-25 21:00:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-11-25 21:00:56 +0000 |
commit | a6ea97718dffb91a71a91992c89ec1a939d696f3 (patch) | |
tree | 370e37eecb411de66982f7ee696e720ae4de39cf /configpm | |
parent | a644ec488eb5f4499bbbcf821abc0e1ab10ed06c (diff) | |
download | perl-a6ea97718dffb91a71a91992c89ec1a939d696f3.tar.gz |
Make $Config{libs_nolargefiles} and
$Config{libswanted_nolargefiles} work. (For the first time)
p4raw-id: //depot/perl@23536
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -299,11 +299,11 @@ sub fetch_virtual { my @libs = grep { /^-l(.+)/ && not exists $lflibswanted{$1} } split(' ', $Config{libs}); - $Config{libs} = join(' ', @libs); + $value = join(' ', @libs); } elsif ($new_key =~ /^libswanted_/) { my @libswanted = grep { not exists $lflibswanted{$_} } split(' ', $Config{libswanted}); - $Config{libswanted} = join(' ', @libswanted); + $value = join(' ', @libswanted); } } } |