summaryrefslogtreecommitdiff
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
parentdf70bc66ea4edc69866485fdd5dd2fdf90ca6c62 (diff)
downloadATCD-12ca0dd864a432930d0ea3226aeacb72211f5d4b.tar.gz
ChangeLogTag:Sun Jul 25 23:18:53 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--ChangeLog8
-rw-r--r--Release2
-rwxr-xr-xbin/make_release8
3 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ba990503834..a9a79465c9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sun Jul 25 23:18:53 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * Release:
+ * bin/make_release:
+
+ Tag and bundle ACE_MPC along with the release. This seems to
+ work. Final stages of testing are on.
+
Sun Jul 25 22:16:27 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* bin/make_release:
diff --git a/Release b/Release
index 0b62aba73eb..448d42eb948 100644
--- a/Release
+++ b/Release
@@ -59,7 +59,6 @@ CONTROLLED_FILES = \
PROBLEM-REPORT-FORM \
README \
THANKS \
- TODO \
VERSION \
ACEXML \
ace \
@@ -70,6 +69,7 @@ CONTROLLED_FILES = \
bin \
configure.ac \
lib \
+ MPC \
docs \
etc \
examples \
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.