summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-08-28 12:58:18 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-08-28 12:58:18 +0000
commit81128486b4646606e75dc45fb81bec66163c0e77 (patch)
treef91ac3bf0627733688e9b96104cd5de1da24e73d
parentb90fea831854870c2a5b3a5efbdcb558f97c6b1c (diff)
downloadATCD-81128486b4646606e75dc45fb81bec66163c0e77.tar.gz
ChangeLogTag: Thu Aug 28 07:57:33 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--bin/MakeProjectCreator/modules/Driver.pm2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b952bf84225..3c69fb51437 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Aug 28 07:57:33 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/Driver.pm:
+
+ Added ERROR: to the output when an unknown option is passed on the
+ command line.
+
Thu Aug 28 07:10:54 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
diff --git a/bin/MakeProjectCreator/modules/Driver.pm b/bin/MakeProjectCreator/modules/Driver.pm
index 9aff481e1b6..d91e8ba94ed 100644
--- a/bin/MakeProjectCreator/modules/Driver.pm
+++ b/bin/MakeProjectCreator/modules/Driver.pm
@@ -91,7 +91,7 @@ sub optionError {
my($base) = $self->{'name'};
if (defined $line) {
- print STDERR "$line\n";
+ print STDERR "ERROR: $line\n";
}
my($spaces) = (' ' x (length($base) + 8));
print STDERR "$base v$self->{'version'}\n" .