[mpich2-commits] r6756 - mpich2/trunk/maint
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Fri May 28 10:35:31 CDT 2010
Author: balaji
Date: 2010-05-28 10:35:31 -0500 (Fri, 28 May 2010)
New Revision: 6756
Modified:
mpich2/trunk/maint/release.pl
Log:
./maint/updatefiles needs to be run twice; once without -distrib and
once with. See ticket #1054 for details.
Modified: mpich2/trunk/maint/release.pl
===================================================================
--- mpich2/trunk/maint/release.pl 2010-05-28 14:43:05 UTC (rev 6755)
+++ mpich2/trunk/maint/release.pl 2010-05-28 15:35:31 UTC (rev 6756)
@@ -180,10 +180,17 @@
print("===> Creating configure in the main package... ");
chdir("${root}/${pack}-${version}");
{
- my $cmd = "./maint/updatefiles -distrib";
+ # ./maint/updatefiles needs to be run twice; once without the
+ # -distrib option and once with.
+ my $cmd = "./maint/updatefiles";
$cmd .= " --with-autoconf=$with_autoconf" if $with_autoconf;
$cmd .= " --with-automake=$with_automake" if $with_automake;
run_cmd($cmd);
+
+ $cmd = "./maint/updatefiles -distrib";
+ $cmd .= " --with-autoconf=$with_autoconf" if $with_autoconf;
+ $cmd .= " --with-automake=$with_automake" if $with_automake;
+ run_cmd($cmd);
}
print("done\n");
More information about the mpich2-commits
mailing list