File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -295,20 +295,29 @@ sub run_cmd
295295
296296# Create the hydra tarball
297297print (" ===> Creating the final hydra tarball... " );
298+ chdir (" ${expdir} " );
299+ run_cmd(" ./autogen.sh -do=hydra" );
300+ chdir (" ${tdir} " );
298301run_cmd(" cp -a ${expdir} /src/pm/hydra hydra-${version} " );
299302run_cmd(" tar -czvf hydra-${version} .tar.gz hydra-${version} " );
300303run_cmd(" cp -a hydra-${version} .tar.gz ${root} /" );
301304print (" done\n " );
302305
303306# Create the pmi tarball
304307print (" ===> Creating the final libpmi tarball... " );
308+ chdir (" ${expdir} " );
309+ run_cmd(" ./autogen.sh -do=pmi" );
310+ chdir (" ${tdir} " );
305311run_cmd(" cp -a ${expdir} /src/pmi libpmi-${version} " );
306312run_cmd(" tar -czvf libpmi-${version} .tar.gz libpmi-${version} " );
307313run_cmd(" cp -a libpmi-${version} .tar.gz ${root} /" );
308314print (" done\n " );
309315
310316# Create the testsuite tarball
311317print (" ===> Creating the final mpich-testsuite tarball... " );
318+ chdir (" ${expdir} " );
319+ run_cmd(" ./autogen.sh -do=test" );
320+ chdir (" ${tdir} " );
312321my $target = " mpich-testsuite-$version " ;
313322run_cmd(" cp -a ${expdir} /test/mpi $target " );
314323run_cmd(" tar -czvf $target .tar.gz $target " );
You can’t perform that action at this time.
0 commit comments