diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-02-20 01:33:15 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-02-20 01:33:15 +0000 |
commit | 57d575e54b13dfdc33671e383dde70b8b240b52f (patch) | |
tree | b59afd5969d6e48f2667ce8e59f55072d7b1e26f /bin/make_release | |
parent | f1405950da083fc8d83ec23de3140fadaa13776a (diff) | |
download | ATCD-57d575e54b13dfdc33671e383dde70b8b240b52f.tar.gz |
ChangeLogTag:Sat Feb 19 17:32:28 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'bin/make_release')
-rwxr-xr-x | bin/make_release | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/make_release b/bin/make_release index a95f2b33aff..bd38525f107 100755 --- a/bin/make_release +++ b/bin/make_release @@ -197,6 +197,9 @@ unless ("$release_lib_files") { chomp ($release_lib_files = `$make show_release_lib_files`); } +unless ("$release_tag_files") { + chomp ($release_tag_files = `$make show_release_tag_files`); +} ######## ######## Setup signal handlers. @@ -565,7 +568,7 @@ sub tag () { if ($KIT eq "TAO") { chdir ".."; } - &ex ("$cvs -q tag $tag $controlled_files > /dev/null"); + &ex ("$cvs -q tag $tag $controlled_files $release_tag_files > /dev/null"); if ($KIT eq "TAO") { chdir "TAO"; } |