summaryrefslogtreecommitdiff
path: root/modules/NMakeWorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-07-17 11:24:57 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-07-17 11:24:57 +0000
commitfbe1f63e49f02ac8cb916942f5d63f0707f07e9b (patch)
treeb54b1d75919a0fe9f5baa57cce270604a0cc04ca /modules/NMakeWorkspaceCreator.pm
parent129bbc4c21f8021b601eb933ab5d81e4158033ed (diff)
downloadMPC-fbe1f63e49f02ac8cb916942f5d63f0707f07e9b.tar.gz
ChangeLogTag: Thu Jul 17 06:21:30 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/NMakeWorkspaceCreator.pm')
-rw-r--r--modules/NMakeWorkspaceCreator.pm9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/NMakeWorkspaceCreator.pm b/modules/NMakeWorkspaceCreator.pm
index 75dc20f0..e8935edf 100644
--- a/modules/NMakeWorkspaceCreator.pm
+++ b/modules/NMakeWorkspaceCreator.pm
@@ -32,8 +32,13 @@ sub crlf {
sub workspace_file_name {
my($self) = shift;
- return $self->get_modified_workspace_name($self->get_workspace_name(),
- '.nmake');
+ if ($self->make_coexistence()) {
+ return $self->get_modified_workspace_name($self->get_workspace_name(),
+ '.nmake');
+ }
+ else {
+ return $self->get_modified_workspace_name('Makefile', '');
+ }
}