diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 21:40:52 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 21:40:52 +0000 |
commit | 5c1c71d6976a28b06be0593450bc9b22dced91d9 (patch) | |
tree | 238d4f4a0778c28e5b1fd6694b0d46dec2eb1fc0 /bin/make_release | |
parent | ffad08f4e3c8c3ee2e0bbbeb9a2625cafe4e0d26 (diff) | |
download | ATCD-5c1c71d6976a28b06be0593450bc9b22dced91d9.tar.gz |
ChangeLogTag: Thu Aug 12 16:24:16 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'bin/make_release')
-rwxr-xr-x | bin/make_release | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/bin/make_release b/bin/make_release index 3352aaf4684..dd555f92ce4 100755 --- a/bin/make_release +++ b/bin/make_release @@ -245,8 +245,10 @@ if ($update_versions && "$kit" ne 'ace+tao') { mkdir "ACE_wrappers/man/html", 0755 || die "$0: unable to mkdir $stage_dir/ACE_wrappers/man/html\n"; } - &ex ("cd ACE_wrappers && bin/generate_man_pages") && - die "$0: failed to generate man pages in $stage_dir/ACE_wrappers\n"; + if ($generate_man_pages) { + &ex ("cd ACE_wrappers && bin/generate_man_pages") && + die "$0: failed to generate man pages in $stage_dir/ACE_wrappers\n"; + } &ex ("cd ACE_wrappers && $make ACE-INSTALL") && die "$0: failed make ACE-INSTALL in $stage_dir/ACE_wrappers\n"; } @@ -563,7 +565,7 @@ sub create_kit () { my $build_command; if ($kit eq 'ace' || $kit eq 'ace+tao') { - if ("$create_zips") { + if ($create_zips) { $build_command = "$rm ACE.zip ACE-lib.zip; " . "$find $release_files $release_filter | $egrep $bin_files | " . @@ -580,7 +582,7 @@ sub create_kit () { "$gzip -9 > ACE-lib.tar.gz && " . "$chmod a+r ACE.tar.gz ACE-lib.tar.gz ACE.zip ACE-lib.zip && " . "$mv -f ACE.zip ACE-lib.zip $dest &&" . - "$mv -f ACE.tar.gz ACE-lib.tar.gz $dest"; + "$mv -f ACE.tar.gz ACE-lib.tar.gz $dest; "; } else { $build_command = "$find $release_files $release_filter | $cpio -o -H tar | " . @@ -588,13 +590,13 @@ sub create_kit () { "$find $release_lib_files $release_filter | $cpio -o -H tar | " . "$gzip -9 > ACE-lib.tar.gz && " . "$chmod a+r ACE.tar.gz ACE-lib.tar.gz && " . - "$mv -f ACE.tar.gz ACE-lib.tar.gz $dest"; + "$mv -f ACE.tar.gz ACE-lib.tar.gz $dest; "; } } if ($kit eq 'ace+tao') { - if ("$create_zips") { - $build_command = + if ($create_zips) { + $build_command .= "$rm ACE+TAO.zip; " . "$find $release_files $release_filter | $egrep $bin_files | " . "zip ACE+TAO.zip -q9@ &&" . @@ -605,7 +607,7 @@ sub create_kit () { "$chmod a+r ACE+TAO.tar.gz ACE+TAO.zip && " . "$mv -f ACE+TAO.tar.gz ACE+TAO.zip $dest"; } else { - $build_command = + $build_command .= "$find $release_files $release_filter | $cpio -o -H tar | " . "$gzip -9 > ACE+TAO.tar.gz && " . "$chmod a+r ACE+TAO.tar.gz && " . |