summaryrefslogtreecommitdiff
path: root/configpm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-11-25 21:00:56 +0000
committerNicholas Clark <nick@ccl4.org>2004-11-25 21:00:56 +0000
commita6ea97718dffb91a71a91992c89ec1a939d696f3 (patch)
tree370e37eecb411de66982f7ee696e720ae4de39cf /configpm
parenta644ec488eb5f4499bbbcf821abc0e1ab10ed06c (diff)
downloadperl-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-xconfigpm4
1 files changed, 2 insertions, 2 deletions
diff --git a/configpm b/configpm
index edd0844265..c1c39221b6 100755
--- a/configpm
+++ b/configpm
@@ -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);
}
}
}