summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
commit40fdc8a404e75ab03b68cc62e9987cf208fd8c30 (patch)
tree37d9c4d3abe4aefd8a34ed797883dd2cd4862ca7 /bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm
parentc254b281f1b9a4ca19dd0c3ee73a0654a7718909 (diff)
downloadATCD-typecode-overhaul.tar.gz
This commit was manufactured by cvs2svn to create branchtypecode-overhaul
'typecode-overhaul'.
Diffstat (limited to 'bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm')
-rw-r--r--bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm b/bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm
index 851239663ea..2a593b21681 100644
--- a/bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm
+++ b/bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm
@@ -25,7 +25,12 @@ use vars qw(@ISA);
sub workspace_file_name {
my($self) = shift;
- return $self->get_modified_workspace_name('Makefile', '.bor');
+ if ($self->make_coexistence()) {
+ return $self->get_modified_workspace_name('Makefile', '.bor');
+ }
+ else {
+ return $self->get_modified_workspace_name('Makefile', '');
+ }
}
@@ -63,7 +68,7 @@ sub write_project_targets {
my($crlf) = $self->crlf();
foreach my $project (@$list) {
- my($dir) = $self->mpc_dirname($project);
+ my($dir) = dirname($project);
my($chdir) = 0;
my($back) = '';