diff options
author | David Golden <dagolden@cpan.org> | 2013-05-23 19:11:23 -0400 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2013-05-23 20:11:25 -0400 |
commit | 246653713af14d15f3f4cbbe21de04d5606be285 (patch) | |
tree | abb5dfa3aa756b4325e997227a8573b9d484472e /configpm | |
parent | 3d6c5fec8cb3579a30be60177e31058bc31285d7 (diff) | |
download | perl-246653713af14d15f3f4cbbe21de04d5606be285.tar.gz |
Try to avoid nesting F<$F<...>> in generated Config.pm
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1019,7 +1019,7 @@ EOF s{([\'\"])([^\'\"\s]+)\1}(C<$2>)g; # "date" command s{\'([A-Za-z_\- *=/]+)\'}(C<$1>)g; # 'ln -s' s{ - (?<! [\w./<\'\"] ) # Only standalone file names + (?<! [\w./<\'\"\$] ) # Only standalone file names (?! e \. g \. ) # Not e.g. (?! \. \. \. ) # Not ... (?! \d ) # Not 5.004 |