summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-11-16 13:27:34 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-11-16 13:27:34 +0000
commite480d2297034b2d58e652df835e744c6a7cb4586 (patch)
tree5daaa8ae9901f2350cc6d4b92d6aee1d12966b52
parent80410d46ecb2a3706e12859cc2080b5552f892d8 (diff)
downloadATCD-e480d2297034b2d58e652df835e744c6a7cb4586.tar.gz
ChangeLogTag: Fri Nov 16 07:22:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog11
-rw-r--r--ChangeLogs/ChangeLog-02a11
-rw-r--r--ChangeLogs/ChangeLog-03a11
-rwxr-xr-xbin/make_release8
4 files changed, 37 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index eade2d5cfea..240e1c47034 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Fri Nov 16 07:22:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/make_release: Updated the script to copy the beta to a
+ different location. Have tested this by creating a dummy
+ repository and a dummy export directory. Things worked
+ fine. Hopefully the beta should go through without any hassle.
+
+ The script is tied to its usage on ace.cs. Needs to be
+ changed. Will do that after this beta goes out. Having too many
+ changes at the same time may not be good.
+
Thu Nov 15 20:44:40 2001 Craig Rodrigues <crodrigu@bbn.com>
* etc/Svc_Conf_l.cpp.diff: Updated. Thanks to Kitty for reporting it.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index eade2d5cfea..240e1c47034 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Fri Nov 16 07:22:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/make_release: Updated the script to copy the beta to a
+ different location. Have tested this by creating a dummy
+ repository and a dummy export directory. Things worked
+ fine. Hopefully the beta should go through without any hassle.
+
+ The script is tied to its usage on ace.cs. Needs to be
+ changed. Will do that after this beta goes out. Having too many
+ changes at the same time may not be good.
+
Thu Nov 15 20:44:40 2001 Craig Rodrigues <crodrigu@bbn.com>
* etc/Svc_Conf_l.cpp.diff: Updated. Thanks to Kitty for reporting it.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index eade2d5cfea..240e1c47034 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,14 @@
+Fri Nov 16 07:22:19 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/make_release: Updated the script to copy the beta to a
+ different location. Have tested this by creating a dummy
+ repository and a dummy export directory. Things worked
+ fine. Hopefully the beta should go through without any hassle.
+
+ The script is tied to its usage on ace.cs. Needs to be
+ changed. Will do that after this beta goes out. Having too many
+ changes at the same time may not be good.
+
Thu Nov 15 20:44:40 2001 Craig Rodrigues <crodrigu@bbn.com>
* etc/Svc_Conf_l.cpp.diff: Updated. Thanks to Kitty for reporting it.
diff --git a/bin/make_release b/bin/make_release
index 1ec2109fd3a..327e87526c7 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -59,9 +59,9 @@ unless ("$hostname" eq 'ace') {
die "$0: must run on host ace\n";
}
-if (! "$ENV{'CVSROOT'}") {
- $ENV{'CVSROOT'} = '/project/cvs-repository';
-}
+
+$ENV{'CVSROOT'} ||
+ die "$0: must set your CVSROOT environment variable\n";
if (! "$ENV{'ACE_ROOT'}") {
chop ($ENV{'ACE_ROOT'} = `/pkg/gnu/bin/pwd`);
@@ -87,7 +87,7 @@ if (-d '/pkg/gnu/bin') {
my $gnu2 = '/project/danzon/pkg/gnu/bin';
$ENV{'PATH'} = "$gnu2" . ':' . $ENV{'PATH'};
-my $export_dir = '/project/ftp-doc/pub/ACE';
+my $export_dir = '/project/deuce/ftp/pub/ACE+TAO-distribution';
my $diffs_dir = "$export_dir/diffs";
my $exec_prefix = '';
my $generate_man_pages = 0;