[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.2-10-g9aa1c31

mysql vizuser noreply at mpich.org
Wed Feb 6 14:10:03 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  9aa1c31b967e80344719fcb02dff7a9a05045b09 (commit)
      from  3593b5c0130a485bfc0da8c383146c6f46e50f70 (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/9aa1c31b967e80344719fcb02dff7a9a05045b09

commit 9aa1c31b967e80344719fcb02dff7a9a05045b09
Author: Dave Goodell <goodell at mcs.anl.gov>
Date:   Wed Feb 6 14:04:16 2013 -0600

    clmake: more patterns and a regex fix
    
    Handle the case where GNU coreutils are installed in some odd `bin`
    directory, such as `gnubin`.
    
    Also fix a bad regex pattern (`[^\w]` means match a single character
    that is not `\` and is not `w`, rather than the opposite of `\w`, which
    is `\W`) by using the `\b` "boundary" atom.
    
    No reviewer.

diff --git a/maint/clmake.in b/maint/clmake.in
index 726675c..5532c47 100644
--- a/maint/clmake.in
+++ b/maint/clmake.in
@@ -39,6 +39,7 @@ $rootSrcDir = "";
 	      "[A-Za-z0-9_\/-]*\/install-sh",
 	      "/usr/bin/ar", "mkdir",
               "/bin/mkdir",
+              "/.*bin/mkdir",
 	      "/usr/ucb/ld",
 	      "mpicc", "mpicxx",
 	      "compiling ROMIO in", 
@@ -55,11 +56,15 @@ $rootSrcDir = "";
 	      "PATH=\"\\\$PATH.*\\sldconfig\\s",
 	      "building profiling interface in directory",
 	      "/usr/bin/install",
+              "/.*bin/install",
 	      "Copying Upshot",
 	      "Cleaning directory",
 	      "[*][*][*][*] Making .*\.\.\.\.",
 	      "Making .* in .*",
-	      "Making upshot", "\\s*\$", );
+	      "Making upshot", "\\s*\$",
+              "ld: warning: directory not found for option '-L\\S*src/mpl'",
+              "ld: warning: directory not found for option '-L\\S*src/openpa/src'",
+);
 
 # OtherNoise is an array of patterns that describe blocks of
 # text that we'd like to skip.  The initial use it to handle 
@@ -183,7 +188,7 @@ while ($line = <>) {
     else {
 	$is_command = 0;
 	foreach $cmdname (@commands) {
-	    if ($line =~ /^\s*$cmdname[^\w]/) {
+	    if ($line =~ /^\s*$cmdname\b/) {
 		$is_command = 1;
 		$cmdline = $line;
 		last;

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

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


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list