summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm')
-rw-r--r--bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm b/bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm
index a3b0ebfbf71..d81f0aeccbd 100644
--- a/bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm
+++ b/bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm
@@ -24,8 +24,8 @@ use vars qw(@ISA);
# ************************************************************
sub workspace_file_name {
- #my($self) = shift;
- return 'ghs/default.bld';
+ my($self) = shift;
+ return "ghs/default.bld";
}
@@ -59,7 +59,7 @@ sub write_comps {
foreach my $project (@list) {
## Convert all /'s to \
- $project = $self->slash_to_backslash($project);
+ $project =~ s/\//\\/g;
print $fh "..\\$project$crlf";
if ($gen->exe_target()) {