summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-06-10 16:36:02 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-06-10 16:36:02 +0000
commit77a52c9423f7a3c224415512daf3879bba2c29d0 (patch)
treeec5fe65f4c207a7663589838c40810d627a0c577
parentead72daf113d3eabf6d0d236cd3b01bbdd51bba5 (diff)
downloadATCD-77a52c9423f7a3c224415512daf3879bba2c29d0.tar.gz
ChangeLogTag: Tue Jun 10 11:35:29 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rwxr-xr-xbin/create_ace_build14
2 files changed, 17 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c345e548d64..e46b5b9ae43 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jun 10 11:35:29 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/create_ace_build:
+
+ Fixed a bug in the message printed about the config.h and
+ platform_macros.GNU.
+
Tue Jun 10 11:09:12 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/PerlACE/Process.pm:
diff --git a/bin/create_ace_build b/bin/create_ace_build
index fa3151e0546..582fde80d68 100755
--- a/bin/create_ace_build
+++ b/bin/create_ace_build
@@ -285,15 +285,21 @@ else {
#### Done: print message.
####
print "\nCompleted creation of $build/.\n";
-
+my($msg) = '';
if (! -e "$build/ace/config.h") {
- print "Be sure to setup $build/ace/config.h";
+ $msg .= "$build/ace/config.h";
}
if ($^O ne 'MSWin32' &&
! -e "$build/include/makeinclude/platform_macros.GNU") {
- print " and\n$build/include/makeinclude/platform_macros.GNU";
+ if ($msg ne '') {
+ $msg .= " and\n";
+ }
+ $msg .= "$build/include/makeinclude/platform_macros.GNU";
+}
+
+if ($msg ne '') {
+ print "Be sure to setup $msg.\n";
}
-print ".\n";
#### EOF