summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-06-17 18:28:06 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-06-17 18:28:06 +0000
commit093f4e2bc7ef325ddd081e7dc0736095413e394e (patch)
tree20e50de2f42596632b990f93fd76e016ad33b3d1
parent4258db3cc778bfb8dc615b5ff4527dd40c20ce93 (diff)
downloadMPC-093f4e2bc7ef325ddd081e7dc0736095413e394e.tar.gz
ChangeLogTag: Tue Jun 17 13:26:58 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--modules/ProjectCreator.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 1396fc8e..a7044649 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -1664,7 +1664,7 @@ sub check_custom_output {
foreach my $c (@$comps) {
## We only match if the built file name matches from
## beginning to end or from a slash to the end.
- if ($c =~ /^$re$/ || $c =~ /\/$re$/) {
+ if ($c =~ /^$re$/ || $c =~ /[\/\\]$re$/) {
push(@outputs, $built);
last;
}