From ba20db931254f02dfcc1847975768d0d1f377902 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 8 Mar 2001 21:47:58 +0000 Subject: fix the regexp --- perl-install/verify_c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/verify_c b/perl-install/verify_c index 520912cfe..94fe0e174 100755 --- a/perl-install/verify_c +++ b/perl-install/verify_c @@ -1,7 +1,7 @@ #!/usr/bin/perl -n /^#/ and next; -/c::(\w+)/ and push @c, [ $1, $ARGV, $. ] ; +/\bc::(\w+)/ and push @c, [ $1, $ARGV, $. ] ; eof && close ARGV; -- cgit v1.2.1