Author: jhoblitt
Date: Wed Oct 5 02:22:38 2005
New Revision: 9350
Modified:
trunk/build_tools/pmc2c.pl
Log:
Fixed the fix to the fix to #36493.
Modified: trunk/build_tools/pmc2c.pl
==============================================================================
--- trunk/build_tools/pmc2c.pl (original)
+++ trunk/build_tools/pmc2c.pl Wed Oct 5 02:22:38 2005
@@ -651,10 +651,10 @@ sub dump_pmc {
my $existing = find_file($include, $file);
if ($existing && -e $existing && dump_is_newer($existing)) {
if ($file =~ /default\.dump$/) {
- $file = $existing; # XXX: overwriting default.dump every time
+ next; # don't overwite default.dump
}
else {
- next; # don't overwrite anything else
+ $file = $existing; # XXX: overwrite anything else
}
}