[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2b1-19-gfbae4e3

Service Account noreply at mpich.org
Sat Mar 28 16:32:41 CDT 2015


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  fbae4e327d638b3615517fdd992824bac3e1d8af (commit)
      from  5538b7ce44f7f7eaf184c90692640d860376c259 (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/fbae4e327d638b3615517fdd992824bac3e1d8af

commit fbae4e327d638b3615517fdd992824bac3e1d8af
Author: Pavan Balaji <balaji at anl.gov>
Date:   Mon Mar 23 04:00:00 2015 -0500

    Remove unnecessary backslashes in man pages.
    
    Signed-off-by: Ken Raffenetti <raffenet at mcs.anl.gov>

diff --git a/src/env/mpicc.txt b/src/env/mpicc.txt
index 99e1bc0..125dbbb 100644
--- a/src/env/mpicc.txt
+++ b/src/env/mpicc.txt
@@ -60,16 +60,16 @@
     Examples:
 To compile a single file 'foo.c', use
 .vb
-   mpicc \-c foo.c
+   mpicc -c foo.c
 .ve
 
 To link the output and make an executable, use
 .vb
-   mpicc \-o foo foo.o
+   mpicc -o foo foo.o
 .ve
 Combining compilation and linking in a single command
 .vb
-   mpicc \-o foo foo.c
+   mpicc -o foo foo.c
 .ve
 is a convenient way to build simple programs.
 
@@ -95,8 +95,8 @@ is a convenient way to build simple programs.
  you could create the file 'myprof.conf' with the lines
 
 .vb
-    PROFILE_PRELIB="\-L/usr/local/myprof/lib \-lmyprof"
-    PROFILE_INCPATHS="\-I/usr/local/myprof/include"
+    PROFILE_PRELIB="-L/usr/local/myprof/lib -lmyprof"
+    PROFILE_INCPATHS="-I/usr/local/myprof/include"
 .ve
  and place it in the sysconfdir directory (this directory is set at
  configure time when MPICH is built).  Then using the command-line 
diff --git a/src/env/mpicxx.txt b/src/env/mpicxx.txt
index 3cf0be4..4935697 100644
--- a/src/env/mpicxx.txt
+++ b/src/env/mpicxx.txt
@@ -60,16 +60,16 @@
     Examples:
 To compile a single file 'foo.c', use
 .vb
-   mpicxx \-c foo.cxx
+   mpicxx -c foo.cxx
 .ve
 
 To link the output and make an executable, use
 .vb
-   mpicxx \-o foo foo.o
+   mpicxx -o foo foo.o
 .ve
 Combining compilation and linking in a single command
 .vb
-   mpicxx \-o foo foo.cxx
+   mpicxx -o foo foo.cxx
 .ve
 is a convenient way to build simple programs.
 
@@ -95,8 +95,8 @@ is a convenient way to build simple programs.
  you could create the file 'myprof.conf' with the lines
 
 .vb
-    PROFILE_PRELIB="\-L/usr/local/myprof/lib \-lmyprof"
-    PROFILE_INCPATHS="\-I/usr/local/myprof/include"
+    PROFILE_PRELIB="-L/usr/local/myprof/lib -lmyprof"
+    PROFILE_INCPATHS="-I/usr/local/myprof/include"
 .ve
  and place it in the sysconfdir directory (this directory is set at
  configure time when MPICH is built).  Then using the command-line 
diff --git a/src/env/mpiexec.txt b/src/env/mpiexec.txt
index d3ca8e2..998f83c 100644
--- a/src/env/mpiexec.txt
+++ b/src/env/mpiexec.txt
@@ -11,7 +11,7 @@
    Multiple Data applications).   For example, the following command will run
    the MPI program 'a.out' on 4 processes\:
 .vb
-    mpiexec \-n 4 a.out
+    mpiexec -n 4 a.out
 .ve
 
 The MPI standard specifies the following arguments and their meanings\:
@@ -27,7 +27,7 @@ The MPI standard specifies the following arguments and their meanings\:
 - \-configfile <name> - file containing specifications of host/program,
    one per line, with # as a comment indicator, e.g., the usual
    mpiexec input, but with ":" replaced with a newline.  That is,
-   the configfile contains lines with \-soft, \-n etc.
+   the configfile contains lines with -soft, -n etc.
 
    Additional arguments that are specific to the MPICH implementation
    are discussed below.
@@ -42,7 +42,7 @@ The MPI standard specifies the following arguments and their meanings\:
    to run the program 'ocean' on 4 processes and 'air' on 8 processes, use\:
 
 .vb
-    mpiexec \-n 4 ocean : \-n 8 air
+    mpiexec -n 4 ocean : -n 8 air
 .ve
 
          
diff --git a/src/env/mpif77.txt b/src/env/mpif77.txt
index dde707c..22786ad 100644
--- a/src/env/mpif77.txt
+++ b/src/env/mpif77.txt
@@ -55,16 +55,16 @@
     Examples:
 To compile a single file 'foo.f', use
 .vb
-   mpif77 \-c foo.f
+   mpif77 -c foo.f
 .ve
 
 To link the output and make an executable, use
 .vb
-   mpif77 \-o foo foo.o
+   mpif77 -o foo foo.o
 .ve
 Combining compilation and linking in a single command
 .vb
-   mpif77 \-o foo foo.f
+   mpif77 -o foo foo.f
 .ve
 is a convenient way to build simple programs.
 
@@ -90,8 +90,8 @@ is a convenient way to build simple programs.
  you could create the file 'myprof.conf' with the lines
 
 .vb
-    PROFILE_PRELIB="\-L/usr/local/myprof/lib \-lmyprof"
-    PROFILE_INCPATHS="\-I/usr/local/myprof/include"
+    PROFILE_PRELIB="-L/usr/local/myprof/lib -lmyprof"
+    PROFILE_INCPATHS="-I/usr/local/myprof/include"
 .ve
  and place it in the sysconfdir directory (this directory is set at
  configure time when MPICH is built).  Then using the command-line 
diff --git a/src/env/mpifort.txt b/src/env/mpifort.txt
index e91935b..5f919a2 100644
--- a/src/env/mpifort.txt
+++ b/src/env/mpifort.txt
@@ -55,16 +55,16 @@
     Examples:
 To compile a single file 'foo.f', use
 .vb
-   mpifort \-c foo.f
+   mpifort -c foo.f
 .ve
 
 To link the output and make an executable, use
 .vb
-   mpifort \-o foo foo.o
+   mpifort -o foo foo.o
 .ve
 Combining compilation and linking in a single command
 .vb
-   mpifort \-o foo foo.f
+   mpifort -o foo foo.f
 .ve
 is a convenient way to build simple programs.
 
@@ -90,8 +90,8 @@ is a convenient way to build simple programs.
  you could create the file 'myprof.conf' with the lines
 
 .vb
-    PROFILE_PRELIB="\-L/usr/local/myprof/lib \-lmyprof"
-    PROFILE_INCPATHS="\-I/usr/local/myprof/include"
+    PROFILE_PRELIB="-L/usr/local/myprof/lib -lmyprof"
+    PROFILE_INCPATHS="-I/usr/local/myprof/include"
 .ve
  and place it in the sysconfdir directory (this directory is set at
  configure time when MPICH is built).  Then using the command-line

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

Summary of changes:
 src/env/mpicc.txt   |   10 +++++-----
 src/env/mpicxx.txt  |   10 +++++-----
 src/env/mpiexec.txt |    6 +++---
 src/env/mpif77.txt  |   10 +++++-----
 src/env/mpifort.txt |   10 +++++-----
 5 files changed, 23 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list