diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2003-08-01 11:39:06 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2003-08-01 11:39:06 +0000 |
commit | fa13631fdb4e23bd15ff42232596c3509ef61c86 (patch) | |
tree | 81c8ae9987f0cdfbd9886abcfeb2d319f883387f /bin | |
parent | 486464643a102975e2bcf829a6500904fc46af02 (diff) | |
download | ATCD-fa13631fdb4e23bd15ff42232596c3509ef61c86.tar.gz |
ChangeLogTag: Fri Aug 1 06:37:39 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/MakeProjectCreator/modules/ProjectCreator.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/MakeProjectCreator/modules/ProjectCreator.pm b/bin/MakeProjectCreator/modules/ProjectCreator.pm index 1cbb06199ba..8318c0f8b28 100644 --- a/bin/MakeProjectCreator/modules/ProjectCreator.pm +++ b/bin/MakeProjectCreator/modules/ProjectCreator.pm @@ -1153,7 +1153,7 @@ sub generate_default_pch_filenames { my($matching) = undef; foreach my $file (@$files) { foreach my $ext (@{$self->{'valid_components'}->{'header_files'}}) { - if ($file =~ /(.*_pch$ext)/) { + if ($file =~ /(.*_pch$ext)$/) { $self->process_assignment('pch_header', $1); ++$count; if ($file =~ /$pname/) { @@ -1173,7 +1173,7 @@ sub generate_default_pch_filenames { my($matching) = undef; foreach my $file (@$files) { foreach my $ext (@{$self->{'valid_components'}->{'source_files'}}) { - if ($file =~ /(.*_pch$ext)/) { + if ($file =~ /(.*_pch$ext)$/) { $self->process_assignment('pch_source', $1); ++$count; if ($file =~ /$pname/) { |