summaryrefslogtreecommitdiff
path: root/modules/VC7WorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-09-16 16:50:31 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-09-16 16:50:31 +0000
commit25949958531eb4353d80b520ca327d1d8c971cc6 (patch)
tree7adf74fd2a5f026351bc0dca4be8a0222cb42089 /modules/VC7WorkspaceCreator.pm
parent9af0fb9f3511c2bdd5f6d477cb5ab63dc3624927 (diff)
downloadMPC-25949958531eb4353d80b520ca327d1d8c971cc6.tar.gz
ChangeLogTag: Tue Sep 16 11:49:19 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC7WorkspaceCreator.pm')
-rw-r--r--modules/VC7WorkspaceCreator.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/VC7WorkspaceCreator.pm b/modules/VC7WorkspaceCreator.pm
index a1161200..62d4e104 100644
--- a/modules/VC7WorkspaceCreator.pm
+++ b/modules/VC7WorkspaceCreator.pm
@@ -43,9 +43,9 @@ sub workspace_file_name {
sub pre_workspace {
my($self) = shift;
my($fh) = shift;
- my($crlf) = $self->crlf();
- print $fh "Microsoft Visual Studio Solution File, Format Version 7.00$crlf";
+ print $fh "Microsoft Visual Studio Solution File, Format Version 7.00" .
+ $self->crlf();
}
@@ -123,7 +123,7 @@ sub write_comps {
## I hate to add yet another loop through all the projects, but
## we must have some way to map plain project names to guids.
my(%name_to_guid_map) = ();
- foreach my $project(sort @list) {
+ foreach my $project(@list) {
my($name, $deps, $guid) = @{$$pjs{$project}};
$name_to_guid_map{$name} = $guid;
}