summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-11-10 18:24:27 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-11-10 18:24:27 +0000
commit34ea43f4708c34c6fe49662834480ade6a92a6a3 (patch)
tree62d97e36a37a71142c67f2e11540d8ce30db36c7
parent3e8a5894a39f930f0fa49bd7d2819e484dad0f51 (diff)
downloadMPC-34ea43f4708c34c6fe49662834480ade6a92a6a3.tar.gz
ChangeLogTag: Thu Nov 10 12:23:43 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--modules/TemplateParser.pm2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fe4a0dab..70da2e3e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Nov 10 12:23:43 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * modules/TemplateParser.pm:
+
+ When checking for duplicate source files in duplicate_index(),
+ always use lowercase (since this is currently only used on
+ Windows).
+
Thu Nov 10 09:01:25 2005 Chad Elliott <elliott_c@ociweb.com>
* templates/automake.mpd:
diff --git a/modules/TemplateParser.pm b/modules/TemplateParser.pm
index be79ba21..5b44061d 100644
--- a/modules/TemplateParser.pm
+++ b/modules/TemplateParser.pm
@@ -1299,7 +1299,7 @@ sub doif_duplicate_index {
my($value) = shift;
if (defined $value) {
- my($base) = $self->basename($value);
+ my($base) = lc($self->basename($value));
my($path) = $self->tp_dirname($value);
if (!defined $self->{'dupfiles'}->{$base}) {