diff options
author | Yitzchak Scott-Thoennes <sthoenna@efn.org> | 2002-01-28 17:13:09 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-30 04:40:56 +0000 |
commit | cb551bf945dbea50db7071001928adfecb0d1bfc (patch) | |
tree | 92ab9c85b3f1e3c89987ccb23a2f72888cb6ce7e /configpm | |
parent | d820be449ce8e26e00bfc816fad88d234aba9cb9 (diff) | |
download | perl-cb551bf945dbea50db7071001928adfecb0d1bfc.tar.gz |
perl -V: (was: Re: Inline::C and Perl objects with C API's)
Message-ID: <lemV8gzkgu/K092yn@efn.org>
p4raw-id: //depot/perl@14497
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -249,7 +249,7 @@ sub config_sh { sub config_re { my $re = shift; - my @matches = ($config_sh =~ /^$re=.*\n/mg); + my @matches = grep /^$re=/, split /^/, $config_sh; @matches ? (print @matches) : print "$re: not found\n"; } |