diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-16 16:41:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-16 16:41:45 +0000 |
commit | 8d962fa19aed5e09e2a40f248faf69d89e34ac51 (patch) | |
tree | b9c24e6867e4ad2847dcd02865021c542715d0c1 /configpm | |
parent | 48fa462660ce4db8227511df5abb5557bba6f39e (diff) | |
download | perl-8d962fa19aed5e09e2a40f248faf69d89e34ac51.tar.gz |
Revert change 27513
[Make the original versions of relocated paths available from
%Config::Config with the prefix "raw_". Not sure if "raw_" is the
best choice.]
p4raw-id: //depot/perl@28210
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -481,9 +481,7 @@ if ($Common{byteorder}) { if (@need_relocation) { $heavy_txt .= 'foreach my $what (qw(' . join (' ', @need_relocation) . ")) {\n" . <<'EOT'; - s<^($what=)(['"])(.*?)\2> - <$1 . $2 . relocate_inc($3) . $2 . "\n" . - 'raw_' . $1 . $2 . $3 . $2>me; + s/^($what=)(['"])(.*?)\2/$1 . $2 . relocate_inc($3) . $2/me; } EOT # Currently it only makes sense to do the ... relocation on Unix, so there's |