summaryrefslogtreecommitdiff
path: root/modules/ProjectCreator.pm
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2010-12-22 17:36:26 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2010-12-22 17:36:26 +0000
commita399cf075c134b906526c09c2ad8a2348dadb5bf (patch)
tree81b4fe7b5864eea2292f514c53bffb9cfe4d705d /modules/ProjectCreator.pm
parent34954baad53240c7e0dbba7bd95d01d4de9a8a35 (diff)
downloadMPC-a399cf075c134b906526c09c2ad8a2348dadb5bf.tar.gz
ChangeLogTag: Wed Dec 22 17:28:56 UTC 2010 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'modules/ProjectCreator.pm')
-rw-r--r--modules/ProjectCreator.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index f959dd5d..67235477 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -14,6 +14,7 @@ use strict;
use FileHandle;
use File::Path;
+use mpc_debug;
use Creator;
use TemplateInputReader;
use TemplateParser;
@@ -454,6 +455,7 @@ sub process_assignment {
if (defined $value) {
if ($name eq 'after') {
+ mpc_debug::chkpnt_pre_after_keyword_assignment($name, $value, $assign, $calledfrom);
## Support dependency attributes. They may or may not be used by
## the project or workspace creator implementation. They are
## stored separately from the dependencies themselves. Also, note
@@ -479,6 +481,7 @@ sub process_assignment {
$value = $self->fill_type_name($value,
$self->get_default_project_name());
}
+ mpc_debug::chkpnt_post_after_keyword_assignment($name, $value, $assign, $calledfrom);
}
## If this particular project type does not consider the dollar sign
@@ -670,7 +673,9 @@ sub begin_project {
}
## Begin reading the parent
+ mpc_debug::chkpnt_pre_parse_base_project($file);
$status = $self->parse_file($file);
+ mpc_debug::chkpnt_post_parse_base_project($file, $status);
## Take the base project file off of the parent stack
pop(@{$self->{'reading_parent'}});
@@ -3312,7 +3317,7 @@ sub list_default_generated {
foreach my $type (@$tags) {
## Only add generated files if the following is true:
## 1) The generating type is not the same as the receiving type.
- ## 2) The receivng type is not "special" (unless it hasn't been
+ ## 2) The receiving type is not "special" (unless it hasn't been
## supplied by the user).
## 3) The receiving type is not user defined or it is user
## defined and has 'automatic_in' set to true.