summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-21 17:01:53 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-21 17:01:53 +0000
commit75cdb442e517cb5531ba355afc30ee075f1a48c6 (patch)
tree8ac50fd31f8ef830c15c7f21010b51de9394286d
parent74c9bee97923be6726d172cc73925bae4445560b (diff)
downloadATCD-75cdb442e517cb5531ba355afc30ee075f1a48c6.tar.gz
ChangeLogTag:Sat Aug 21 11:52:51 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--ChangeLog-99b4
-rwxr-xr-xbin/make_release10
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index b5a87b30ef9..6e744a50f76 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -3,6 +3,10 @@ Sat Aug 21 11:52:51 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* Makefile:
Fixed small problem in the releaseall target.
+ * bin/make_release:
+ The shell did not like the embedded script to print the
+ ChangeLog entry.
+
Thu Aug 19 18:45:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/Auto_Ptr.h: modified ACE_AUTO_PTR_RESET macro, to pass the
diff --git a/bin/make_release b/bin/make_release
index 26789b9d9b9..e9ad848bb6c 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -481,11 +481,11 @@ sub update_changelog () {
my $message = "$now $signature <$logname\\\@cs.wustl.edu>\n\n" .
" * $KIT version $version released.\n\n";
- &ex ("perl -pi -e 'BEGIN {\$message_printed = 0;}
- if (! \$message_printed) {
- print \"$message\";
- ++\$message_printed;
- }' ChangeLog");
+ &ex ("perl -pi -e 'BEGIN {\$message_printed = 0;} " .
+ "if (! \$message_printed) { " .
+ "print \"$message\"; " .
+ "++\$message_printed; " .
+ "}' ChangeLog");
return 1 if $? >> 8;
my $version_h = $kit =~ /^ace/ ? 'ace/Version.h' : 'tao/Version.h';