[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-295-gc5b1e37

mysql vizuser noreply at mpich.org
Sun Jun 9 13:24:15 CDT 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  c5b1e3796a3594e2cbf1fb9614046856c45225d1 (commit)
      from  a5719ca872c316e5d4545acf7e2be0eaad5e7d92 (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/c5b1e3796a3594e2cbf1fb9614046856c45225d1

commit c5b1e3796a3594e2cbf1fb9614046856c45225d1
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Sun Jun 9 11:12:28 2013 -0500

    Place the preferred environment variable name at the top.
    
    MPIR_PARAM_ gets higher priority than MPICH_.  So we place the
    MPIR_PARAM_ version as the preferred environment variable name, but
    provide the MPICH_ version as an alternative.

diff --git a/maint/genparams b/maint/genparams
index 94c575d..36bbad0 100755
--- a/maint/genparams
+++ b/maint/genparams
@@ -465,12 +465,12 @@ foreach my $p (@{$params->{parameters}}) {
     my $default;
 
     # process extra envs first so the primary always wins
-    push @env_names, map { "${alt_ns}_$_" } @{$p->{'alt-env'}};
-    push @env_names, "${uc_ns}_" . $p->{name};
+    push @env_names, "${alt_ns}_" . $p->{name};
     push @env_names, map { "${uc_ns}_$_" } @{$p->{'alt-env'}};
+    push @env_names, map { "${alt_ns}_$_" } @{$p->{'alt-env'}};
     push @env_names, @{$p->{'abs-alt-env'}} if $p->{'abs-alt-env'};
 
-    print PARAM_README "${alt_ns}_$p->{name}\n";
+    print PARAM_README "${uc_ns}_$p->{name}\n";
 
     $first = 1;
     foreach $alt (@env_names) {

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

Summary of changes:
 maint/genparams |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list