summaryrefslogtreecommitdiff
path: root/bin/make_release
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-07-25 23:21:16 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-07-25 23:21:16 +0000
commit12ca0dd864a432930d0ea3226aeacb72211f5d4b (patch)
tree509029cee4ac180bc733dc6eb00eae3a957bd424 /bin/make_release
parentdf70bc66ea4edc69866485fdd5dd2fdf90ca6c62 (diff)
downloadATCD-12ca0dd864a432930d0ea3226aeacb72211f5d4b.tar.gz
ChangeLogTag:Sun Jul 25 23:18:53 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'bin/make_release')
-rwxr-xr-xbin/make_release8
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/make_release b/bin/make_release
index a67d593fce4..4dfa1392c69 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -268,6 +268,11 @@ if ($update_versions && "$kit" ne 'ace+tao+ciao') {
die "$0: failed make ACE-INSTALL in $stage_dir/ACE_wrappers\n";
}
+ if ("$ace_tag") {
+ &ex ("$cvs -q export -r$ace_tag -kv ACE_MPC > /dev/null") &&
+ die "$0: failed cvs export of ACE_MPC in $stage_dir\n";
+ }
+
if ("$tao_tag") {
&ex ("$cvs -q export -r$tao_tag -kv ACE_wrappers/TAO > /dev/null") &&
die "$0: failed cvs export of $tao_tag in $stage_dir\n";
@@ -275,6 +280,7 @@ if ($update_versions && "$kit" ne 'ace+tao+ciao') {
die "$0: failed make INSTALL in " .
"$stage_dir/ACE_wrappers/TAO\n";
}
+
if ("$ciao_tag") {
&ex ("$cvs -q export -r$ciao_tag -kv ACE_wrappers/TAO/CIAO > /dev/null") &&
die "$0: failed cvs export of $ciao_tag in $stage_dir\n";
@@ -367,7 +373,7 @@ sub check_workspace () {
}
my @out_of_date = ();
- open (CVS, "$cvs -Q checkout -P $module 2>&1 |") ||
+ open (CVS, "$cvs -q checkout -P $module 2>&1 |") ||
die "$0: unable to open $cvs\n";
while (<CVS>) {
next if m%^U %; #### Allow others to update the repository.