[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.2-14-g5ffbf15

mysql vizuser noreply at mpich.org
Wed Feb 6 22:30:20 CST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  5ffbf15451930ce35b5e08678d8b267ceb6a5fe4 (commit)
      from  eed007281d4eca1e8bd662022a91526fb789b6bc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/5ffbf15451930ce35b5e08678d8b267ceb6a5fe4

commit 5ffbf15451930ce35b5e08678d8b267ceb6a5fe4
Author: Dave Goodell <goodell at mcs.anl.gov>
Date:   Wed Feb 6 22:27:59 2013 -0600

    clmake: use `\W` instead of `\b`
    
    Patterns that end in non-word chars (such as `:`) will not match a `\b`
    atom when followed by a non-word like ` ` or `\n`.
    
    No reviewer.

diff --git a/maint/clmake.in b/maint/clmake.in
index 5532c47..4a18f18 100644
--- a/maint/clmake.in
+++ b/maint/clmake.in
@@ -188,7 +188,7 @@ while ($line = <>) {
     else {
 	$is_command = 0;
 	foreach $cmdname (@commands) {
-	    if ($line =~ /^\s*$cmdname\b/) {
+	    if ($line =~ /^\s*$cmdname\W/) {
 		$is_command = 1;
 		$cmdline = $line;
 		last;

-----------------------------------------------------------------------

Summary of changes:
 maint/clmake.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list