summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-12 13:58:20 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-12 13:58:20 +0000
commitd1a4126a04f4d5aa67d101ce91b46b71a8569994 (patch)
treec525d03b9b440d6f21992d6671b98d6accaff2d4
parent1cdadaa10e4908d7b5c67ac1f68a7b2811bee893 (diff)
downloadATCD-d1a4126a04f4d5aa67d101ce91b46b71a8569994.tar.gz
ChangeLogTag: Mon May 12 08:56:27 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--bin/MakeProjectCreator/modules/ProjectCreator.pm2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ae2c02598f1..88903394bd2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon May 12 08:56:27 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/ProjectCreator.pm:
+
+ Added a check to avoid comparing the output files if they are
+ different sizes.
+
Mon May 12 07:39:29 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
diff --git a/bin/MakeProjectCreator/modules/ProjectCreator.pm b/bin/MakeProjectCreator/modules/ProjectCreator.pm
index 3657771cb7c..8282b754a6b 100644
--- a/bin/MakeProjectCreator/modules/ProjectCreator.pm
+++ b/bin/MakeProjectCreator/modules/ProjectCreator.pm
@@ -1753,7 +1753,7 @@ sub write_output_file {
print $fh $line;
}
close($fh);
- if (compare($tmp, $name) == 0) {
+ if (-s $tmp == -s $name && compare($tmp, $name) == 0) {
$different = 0;
}
}