summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-04-26 16:31:26 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-04-26 16:31:26 +0000
commitb1e5b29a7ae81c721cad781078b048aba2b5527a (patch)
treee8a1862cb35af92878a715a7b2cb53d967fe04f2
parent9776356f7b879d7766f8d30f3b2e338e30db22b7 (diff)
downloadMPC-b1e5b29a7ae81c721cad781078b048aba2b5527a.tar.gz
ChangeLogTag: Tue Apr 26 11:29:57 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--modules/ProjectCreator.pm2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index df0b2a3a..76750920 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Apr 26 11:29:57 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * modules/ProjectCreator.pm:
+
+ Fixed a bug where when excluded files were listed in Source_Files
+ those that didn't match were no longer being added.
+
Mon Apr 25 10:31:48 2005 Chad Elliott <elliott_c@ociweb.com>
* config/xerces.mpb:
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 473b6704..f40b68a5 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -1066,7 +1066,7 @@ sub parse_components {
}
elsif ($line =~ /^}$/) {
if (defined $current) {
- if (!defined $$comps{$current}->[0]) {
+ if (!defined $$comps{$current}->[0] && !defined $exclude[0]) {
## The default components name was never used
## so we remove it from the components
delete $$comps{$current};