[mpich2-commits] r4186 - in mpich2/trunk: . doc/faq doc/mpich2 doc/notes/agent doc/pmi maint src/binding/cxx src/binding/f77 src/binding/f90

balaji at mcs.anl.gov balaji at mcs.anl.gov
Wed Mar 25 10:43:14 CDT 2009


Author: balaji
Date: 2009-03-25 10:43:14 -0500 (Wed, 25 Mar 2009)
New Revision: 4186

Modified:
   mpich2/trunk/doc/faq/faqbuild
   mpich2/trunk/doc/mpich2/sm2dot
   mpich2/trunk/doc/notes/agent/sm2dot
   mpich2/trunk/doc/pmi/manextract
   mpich2/trunk/maint/checkmake
   mpich2/trunk/maint/extracterrmsgs
   mpich2/trunk/maint/extractparms
   mpich2/trunk/maint/parse.sub
   mpich2/trunk/maint/parsetest
   mpich2/trunk/maint/testpmpi
   mpich2/trunk/maint/update_windows_version
   mpich2/trunk/mpich2-doxygen.in
   mpich2/trunk/src/binding/cxx/buildiface
   mpich2/trunk/src/binding/cxx/cov2html.in
   mpich2/trunk/src/binding/cxx/cxxtodecl
   mpich2/trunk/src/binding/f77/buildiface
   mpich2/trunk/src/binding/f90/binding.sub
   mpich2/trunk/src/binding/f90/buildiface
Log:
Use "/usr/bin/env perl" instead of "/usr/bin/perl" for portability.

Reviewed by goodell.


Modified: mpich2/trunk/doc/faq/faqbuild
===================================================================
--- mpich2/trunk/doc/faq/faqbuild	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/doc/faq/faqbuild	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl -w
 #
 # Create an FAQ from a single source file.  Handles both LaTeX and HTML output
 # The file uses structured comments to provide information needed to create 

Modified: mpich2/trunk/doc/mpich2/sm2dot
===================================================================
--- mpich2/trunk/doc/mpich2/sm2dot	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/doc/mpich2/sm2dot	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 #
 # sm2dot
 #

Modified: mpich2/trunk/doc/notes/agent/sm2dot
===================================================================
--- mpich2/trunk/doc/notes/agent/sm2dot	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/doc/notes/agent/sm2dot	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 #
 # sm2dot
 #

Modified: mpich2/trunk/doc/pmi/manextract
===================================================================
--- mpich2/trunk/doc/pmi/manextract	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/doc/pmi/manextract	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl -w
 #
 # This script extracts the text blocks from a source file and creates a
 # simple text block out of them.  

Modified: mpich2/trunk/maint/checkmake
===================================================================
--- mpich2/trunk/maint/checkmake	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/checkmake	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 #
 # A simple check of the make output when developing
 

Modified: mpich2/trunk/maint/extracterrmsgs
===================================================================
--- mpich2/trunk/maint/extracterrmsgs	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/extracterrmsgs	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl 
+#! /usr/bin/env perl 
 # (Tested with -w; 10/5/04)
 # 
 # Find the parse.sub routine.

Modified: mpich2/trunk/maint/extractparms
===================================================================
--- mpich2/trunk/maint/extractparms	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/extractparms	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl -w
 # (Tested with -w; 2/23/07)
 # 
 # Find the parse.sub routine.

Modified: mpich2/trunk/maint/parse.sub
===================================================================
--- mpich2/trunk/maint/parse.sub	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/parse.sub	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 #
 # File of useful routines use to process the MPI source files.  This is 
 # included by routines that process parameters and error messages, along with

Modified: mpich2/trunk/maint/parsetest
===================================================================
--- mpich2/trunk/maint/parsetest	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/parsetest	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 #
 require "maint/parse.sub";
 

Modified: mpich2/trunk/maint/testpmpi
===================================================================
--- mpich2/trunk/maint/testpmpi	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/testpmpi	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 #
 # 
 $routine_prefix = "MPI_";

Modified: mpich2/trunk/maint/update_windows_version
===================================================================
--- mpich2/trunk/maint/update_windows_version	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/maint/update_windows_version	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 
 $version = "";
 $filename = "mpich2i.vdproj";

Modified: mpich2/trunk/mpich2-doxygen.in
===================================================================
--- mpich2/trunk/mpich2-doxygen.in	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/mpich2-doxygen.in	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1070,7 +1070,7 @@
 # The PERL_PATH should be the absolute path and name of the perl script 
 # interpreter (i.e. the result of `which perl').
 
-PERL_PATH              = /usr/bin/perl
+PERL_PATH              = @PERL@
 
 #---------------------------------------------------------------------------
 # Configuration options related to the dot tool   

Modified: mpich2/trunk/src/binding/cxx/buildiface
===================================================================
--- mpich2/trunk/src/binding/cxx/buildiface	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/cxx/buildiface	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl 
+#! /usr/bin/env perl 
 #
 # This file builds candidate interface files from the descriptions in 
 # mpi.h

Modified: mpich2/trunk/src/binding/cxx/cov2html.in
===================================================================
--- mpich2/trunk/src/binding/cxx/cov2html.in	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/cxx/cov2html.in	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 # -*- Mode:perl ; -*-
 #
 # This file converts a coverate data file, produced by the simple coverage

Modified: mpich2/trunk/src/binding/cxx/cxxtodecl
===================================================================
--- mpich2/trunk/src/binding/cxx/cxxtodecl	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/cxx/cxxtodecl	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 # Class mapping
 %ShortClassName = ( "Info" => "info",
 		    "Win" => "win",

Modified: mpich2/trunk/src/binding/f77/buildiface
===================================================================
--- mpich2/trunk/src/binding/f77/buildiface	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/f77/buildiface	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl -w
 #
 # This file builds candidate interface files from the descriptions in 
 # mpi.h

Modified: mpich2/trunk/src/binding/f90/binding.sub
===================================================================
--- mpich2/trunk/src/binding/f90/binding.sub	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/f90/binding.sub	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
 #
 # This file contains common routines for reading a file of function prototypes
 # (such as mpi.h) and extracting the function prototypes.  

Modified: mpich2/trunk/src/binding/f90/buildiface
===================================================================
--- mpich2/trunk/src/binding/f90/buildiface	2009-03-25 14:40:18 UTC (rev 4185)
+++ mpich2/trunk/src/binding/f90/buildiface	2009-03-25 15:43:14 UTC (rev 4186)
@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl -w
 # binding.sub provides the routines for reading the prototype file
 # and extracting the function definitions.
 require "binding.sub";



More information about the mpich2-commits mailing list