summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2014-11-20 11:58:26 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2014-11-20 11:58:26 +0000
commit29b8ac8d4633a504dbe987b14fe8120e96cd5058 (patch)
treea76ea5e0bf35c90135aa2a0f53b7beaece6f066c /modules
parent2b42b0221d5d241e9e60e68260710e967d2a7c4f (diff)
downloadMPC-29b8ac8d4633a504dbe987b14fe8120e96cd5058.tar.gz
ChangeLogTag: Thu Nov 20 11:56:03 UTC 2014 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/ProjectCreator.pm2
-rw-r--r--modules/VC8WorkspaceCreator.pm3
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 647f0c77..3baff64d 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -4689,7 +4689,7 @@ sub check_features {
if ($info && !$status) {
$self->details("Skipping " . $self->get_assignment('project_name') .
- " ($self->{'current_input'}), it $why.");
+ " ($self->{'current_input'}); it $why.");
}
return $status;
diff --git a/modules/VC8WorkspaceCreator.pm b/modules/VC8WorkspaceCreator.pm
index 576b852f..0fdb64e4 100644
--- a/modules/VC8WorkspaceCreator.pm
+++ b/modules/VC8WorkspaceCreator.pm
@@ -81,7 +81,8 @@ sub post_workspace {
my $ph = new FileHandle();
my $outdir = $self->get_outdir();
$outdir = $self->getcwd() if ($outdir eq '.');
- if (open($ph, "$outdir/$project")) {
+ if (open($ph, $self->path_is_relative($project) ?
+ "$outdir/$project" : $project)) {
my $write;
my @read;
my $crlf = $self->crlf();