OpenJDK6 B30 Available

Omair Majid omajid at redhat.com
Wed Jan 22 14:34:24 PST 2014


* Andrew Hughes <gnu.andrew at redhat.com> [2014-01-22 05:23]:
> The change list is missing a change from the root repository:
> 
> $ hg log -R ../upstream/jdk6 -r 86
> changeset:   86:0ee0e8c81e3d
> tag:         jdk6-b30
> user:        omajid
> date:        Fri Dec 06 13:03:52 2013 -0500
> summary:     OPENJDK6-24: Fix change summary generator

Thanks for pointing it out. It's a bug in the report generator. I have
updated the change page [1].

I have made a minimal fix to the report generator to fix this issue too.
Does it look okay?
 
Thanks,
Omair

[1] https://openjdk6.java.net/OpenJDK6-B30-Changes.html

-- 
PGP Key: 66484681 (http://pgp.mit.edu/)
Fingerprint = F072 555B 0A17 3957 4E95  0056 F286 F14F 6648 4681
-------------- next part --------------
diff --git a/make/scripts/jdkreport.pl b/make/scripts/jdkreport.pl
--- a/make/scripts/jdkreport.pl
+++ b/make/scripts/jdkreport.pl
@@ -118,10 +118,11 @@
    }
  }
 
+ if($#bugs >= 0) { #print the bugs for the last changeset in the file
+   print_bugs();
+ }
+
  if($first == 0) {
-   if($#bugs >= 0) { #print the bugs for the last changeset in the file
-     print_bugs();
-   }
    print "</table>"; #close table only if first is false
  }
 }


More information about the jdk6-dev mailing list