[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-408-g1f307df

mysql vizuser noreply at mpich.org
Tue Jul 30 10:47: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  1f307dfa1ce322081457139cdbfbc28e71f9043b (commit)
      from  cfaa95cc36e05cc5df38e6a895c0b9e3abc90128 (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/1f307dfa1ce322081457139cdbfbc28e71f9043b

commit 1f307dfa1ce322081457139cdbfbc28e71f9043b
Author: Xin Zhao <xinzhao3 at illinois.edu>
Date:   Tue Jul 30 10:38:54 2013 -0500

    Fixed touch command option order
    
    Fix touch command in autogen.sh that generates a random file and reruns
    configure during first make.
    
    Some systems (MACs) require the options to be specified prior to the target
    file for the touch command. This commit fixes the option order in the touch
    command in autogen.sh introduced to fix ticket #1870.
    
    Signed-off-by: Antonio J. Pena <apenya at mcs.anl.gov>

diff --git a/autogen.sh b/autogen.sh
index d79c451..5dc2a7e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -917,7 +917,7 @@ if [ "$do_build_configure" = "yes" ] ; then
                         # Remove possible leftovers, which don't imply a failure
                         rm -f $amdir/confdb/libtool.m4.orig
                         # Reset libtool.m4 timestamps to avoid confusing make
-                        touch $amdir/confdb/libtool.m4 -r $amdir/confdb/ltversion.m4
+                        touch -r $amdir/confdb/ltversion.m4 $amdir/confdb/libtool.m4
                     else
                         echo "failed"
                     fi

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

Summary of changes:
 autogen.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list