# HG changeset patch # User Andrew John Hughes # Date 1474308417 -3600 # Node ID dbc79f1b044566f03ddb866566c8a16cfac406ef # Parent 27857942e4d5412c4762e0b3c3dd346c47b62902 PR3166: invalid zip timestamp handling leads to error building bootstrap-javac 2016-08-19 Andrew John Hughes PR3166: invalid zip timestamp handling leads to error building bootstrap-javac * AUTHORS: Add Ricardo Ribalda. * NEWS: Updated. 2016-08-19 Ricardo Ribalda PR3166: invalid zip timestamp handling leads to error building bootstrap-javac * Makefile.am: (rt): Don't use -u so files are always overwritten, regardless of timestamps. diff -r 27857942e4d5 -r dbc79f1b0445 AUTHORS --- a/AUTHORS Mon Sep 19 18:55:31 2016 +0100 +++ b/AUTHORS Mon Sep 19 19:06:57 2016 +0100 @@ -35,6 +35,7 @@ Xerxes RÄnby Damien Raude-Morvan Mark Reinhold +Ricardo Ribalda Bernhard RosenkrÀnzer Marc Schoenefeld Keith Seitz diff -r 27857942e4d5 -r dbc79f1b0445 ChangeLog --- a/ChangeLog Mon Sep 19 18:55:31 2016 +0100 +++ b/ChangeLog Mon Sep 19 19:06:57 2016 +0100 @@ -1,3 +1,18 @@ +2016-08-19 Andrew John Hughes + + PR3166: invalid zip timestamp handling leads to + error building bootstrap-javac + * AUTHORS: Add Ricardo Ribalda. + * NEWS: Updated. + +2016-08-19 Ricardo Ribalda + + PR3166: invalid zip timestamp handling leads to + error building bootstrap-javac + * Makefile.am: + (rt): Don't use -u so files are always overwritten, + regardless of timestamps. + 2016-08-14 Andrew John Hughes PR3141: Pass $(CC) and $(CXX) to OpenJDK build diff -r 27857942e4d5 -r dbc79f1b0445 Makefile.am --- a/Makefile.am Mon Sep 19 18:55:31 2016 +0100 +++ b/Makefile.am Mon Sep 19 19:06:57 2016 +0100 @@ -3025,7 +3025,7 @@ cp -a ../../$$dirs $$destpath ; \ done ; \ if [ -w $(STAGE1_BOOT_RUNTIME) ] ; then \ - $(ZIP) -qur $(STAGE1_BOOT_RUNTIME) com java javax sun ; \ + $(ZIP) -qr $(STAGE1_BOOT_RUNTIME) com java javax sun ; \ fi ; ) \ fi mkdir -p stamps diff -r 27857942e4d5 -r dbc79f1b0445 NEWS --- a/NEWS Mon Sep 19 18:55:31 2016 +0100 +++ b/NEWS Mon Sep 19 19:06:57 2016 +0100 @@ -21,6 +21,7 @@ - PR3131: PaX marking fails on filesystems which don't support extended attributes - PR3135: Makefile.am rule stamps/add/tzdata-support-debug.stamp has a typo in add-tzdata dependency - PR3141: Pass $(CC) and $(CXX) to OpenJDK build + - PR3166: invalid zip timestamp handling leads to error building bootstrap-javac New in release 2.6.7 (2016-07-28):