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

mysql vizuser noreply at mpich.org
Wed Apr 24 21:19:24 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  85acf6c54540d3e5e63deb4ef3a003dc78803659 (commit)
      from  0f1067da5ffe74f6288f2767fe701d82a85ce99c (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/85acf6c54540d3e5e63deb4ef3a003dc78803659

commit 85acf6c54540d3e5e63deb4ef3a003dc78803659
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Wed Apr 24 10:18:11 2013 -0500

    Use VPATH builds for docs in release tarball creation.
    
    We were making an additional copy of the code to create documents
    in-path because VPATH builds didn't work correctly for docs.  At some
    point (possibly when we moved to the new build system), this got fixed
    and this round-about method is no longer needed.
    
    Reviewed by dinan.

diff --git a/maint/release.pl b/maint/release.pl
index a4d2916..701494b 100755
--- a/maint/release.pl
+++ b/maint/release.pl
@@ -284,23 +284,13 @@ print("done\n");
 
 # Get docs
 print("===> Creating secondary codebase for the docs... ");
-run_cmd("cp -a ${expdir} ${expdir}-tmp");
-print("done\n");
-
-print("===> Configuring and making the secondary codebase... ");
-chdir("${expdir}-tmp");
-{
-    my $cmd = "./autogen.sh";
-    $cmd .= " --with-autoconf=$with_autoconf" if $with_autoconf;
-    $cmd .= " --with-automake=$with_automake" if $with_automake;
-    run_cmd($cmd);
-}
-run_cmd("./configure --disable-fc --disable-f77 --disable-cxx");
+run_cmd("mkdir ${expdir}-build");
+chdir("${expdir}-build");
+run_cmd("${expdir}/configure --disable-fc --disable-f77 --disable-cxx");
 run_cmd("(make mandoc && make htmldoc && make latexdoc)");
 print("done\n");
 
 print("===> Copying docs over... ");
-chdir("${expdir}-tmp");
 run_cmd("cp -a man ${expdir}");
 run_cmd("cp -a www ${expdir}");
 run_cmd("cp -a doc/userguide/user.pdf ${expdir}/doc/userguide");

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

Summary of changes:
 maint/release.pl |   16 +++-------------
 1 files changed, 3 insertions(+), 13 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list