[mpich2-commits] r5410 - mpich2/trunk/maint

balaji at mcs.anl.gov balaji at mcs.anl.gov
Tue Oct 6 19:00:11 CDT 2009


Author: balaji
Date: 2009-10-06 19:00:11 -0500 (Tue, 06 Oct 2009)
New Revision: 5410

Modified:
   mpich2/trunk/maint/release.pl
Log:
Fixed a bug in the release script that was causing the configure to
not get created correctly.


Modified: mpich2/trunk/maint/release.pl
===================================================================
--- mpich2/trunk/maint/release.pl	2009-10-06 22:18:39 UTC (rev 5409)
+++ mpich2/trunk/maint/release.pl	2009-10-07 00:00:11 UTC (rev 5410)
@@ -130,7 +130,7 @@
     debug("===> Creating configure in the main package... ");
     chdir("${root}/mpich2-${version}");
     {
-        my $cmd = "./maint/updatefiles -distrib";
+        my $cmd = "./maint/updatefiles";
         $cmd .= " --with-autoconf=$with_autoconf" if $with_autoconf;
         $cmd .= " --with-automake=$with_automake" if $with_automake;
         run_cmd($cmd);
@@ -140,8 +140,8 @@
     # Remove unnecessary files
     debug("===> Removing unnecessary files in the main package... ");
     chdir("${root}/mpich2-${version}");
-    run_cmd("rm -rf README.vin maint/config.log maint/config.status unusederr.txt autom4te.cache src/mpe2/src/slog2sdk/doc/jumpshot-4/tex");
-    run_cmd("find . -name autom4te.cache -exec rm -rf {} \;");
+    run_cmd("rm -rf README.vin maint/config.log maint/config.status unusederr.txt src/mpe2/src/slog2sdk/doc/jumpshot-4/tex");
+    run_cmd("find . -name autom4te.cache | xargs rm -rf");
     debug("done\n");
 
     # Get docs



More information about the mpich2-commits mailing list