summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-10-10 20:59:07 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-10-10 20:59:07 +0000
commit895241648eb9664269783957c2952bb7c7d9dd7f (patch)
treede2a367b2d57a61a961f02244198890ea85f8b9a
parent3c42865abd0cc4f6121bcc31808472ff5be247d3 (diff)
downloadATCD-895241648eb9664269783957c2952bb7c7d9dd7f.tar.gz
ChangeLogTag:Thu Oct 10 13:56:35 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLogs/ChangeLog-03a9
-rwxr-xr-xbin/make_release2
3 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f73c1f0ecfb..f5d2ed6a8d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Thu Oct 10 13:56:35 2002 Ossama Othman <ossama@uci.edu>
+
+ * bin/make_release (check_workspace):
+
+ Ignore platform_macros.GNU and config.h files. They are
+ needed when cutting the beta/release. This isn't a problem
+ since the ACE/TAO kits are created from a "cvs export"ed
+ workspace that doesn't include those files.
+
Thu Oct 10 15:11:07 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* bin/make_release: A pattern matching issue. The cvs server now
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index f73c1f0ecfb..f5d2ed6a8d2 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,12 @@
+Thu Oct 10 13:56:35 2002 Ossama Othman <ossama@uci.edu>
+
+ * bin/make_release (check_workspace):
+
+ Ignore platform_macros.GNU and config.h files. They are
+ needed when cutting the beta/release. This isn't a problem
+ since the ACE/TAO kits are created from a "cvs export"ed
+ workspace that doesn't include those files.
+
Thu Oct 10 15:11:07 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* bin/make_release: A pattern matching issue. The cvs server now
diff --git a/bin/make_release b/bin/make_release
index 452bcbe86a8..4757ab49e0c 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -413,6 +413,8 @@ sub check_workspace () {
while (<CVS>) {
next if m%^U %; #### Allow others to update the repository.
next if m%^cvs server: New directory `.*' -- ignored$%; #### empty dirs.
+ next if m%^\? ACE_wrappers/include/makeinclude/platform_macros.GNU$%;
+ next if m%^\? ACE_wrappers/ace/config.h$%;
push (@out_of_date, $_) if "$_";
}