summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-11-14 18:22:02 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-11-14 18:22:02 +0000
commitae606987f44454f996f4913972921170a1fb4ded (patch)
tree2975142c5126ef744cf5aac338aad94822f36a7a /bin
parent8b33b49a772854a9a61aa6938404ca0350518ad5 (diff)
downloadATCD-ae606987f44454f996f4913972921170a1fb4ded.tar.gz
ChangeLogTag: Thu Nov 14 12:19:51 2002 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rw-r--r--bin/MakeProjectCreator/modules/Creator.pm2
-rw-r--r--bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/MakeProjectCreator/modules/Creator.pm b/bin/MakeProjectCreator/modules/Creator.pm
index 6abba79810e..13e796e69ed 100644
--- a/bin/MakeProjectCreator/modules/Creator.pm
+++ b/bin/MakeProjectCreator/modules/Creator.pm
@@ -315,7 +315,7 @@ sub get_relative {
sub windows_crlf {
#my($self) = shift;
- if ($^O eq 'MSWin32') {
+ if ($^O eq 'MSWin32' || $^O eq 'cygwin') {
return "\n";
}
else {
diff --git a/bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm b/bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm
index fff045ce054..0b9013d0e92 100644
--- a/bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm
+++ b/bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm
@@ -57,7 +57,7 @@ sub write_comps {
## $guid above is the VC7 Project GUID. It should not change.
## Project Information
- foreach my $project (@list) {
+ foreach my $project (sort @list) {
my($pi) = $$pjs{$project};
my($name, $deps, $pguid) = @$pi;
@@ -111,7 +111,7 @@ sub write_comps {
"\tGlobalSection(ProjectConfiguration) = postSolution$crlf";
## Project Configuration Names
- foreach my $project (@list) {
+ foreach my $project (sort @list) {
my($pi) = $$pjs{$project};
my($name, $deps, $pguid, @cfgs) = @$pi;
foreach my $cfg (sort @cfgs) {