# HG changeset patch # User Andrew John Hughes # Date 1482979839 0 # Node ID bfb471488e308ff22ec778c843eaf3bbe90e9243 # Parent e61c9fc4401dbeaf364d082668b590f9b353e842 PR3175: invalid zip timestamp handling leads to error updating JAR files 2016-08-19 Andrew John Hughes PR3175: invalid zip timestamp handling leads to error updating JAR files * AUTHORS: Add Ricardo Ribalda. * NEWS: Updated. 2016-08-19 Ricardo Ribalda PR3175: invalid zip timestamp handling leads to error updating JAR files * Makefile.am: (add-pulseaudio): Don't use -u so files are always overwritten, regardless of timestamps. (add-pulseaudio-debug): Likewise. (add-pulseaudio-ecj): Likewise. diff -r e61c9fc4401d -r bfb471488e30 AUTHORS --- a/AUTHORS Fri Mar 16 13:15:15 2012 +0100 +++ b/AUTHORS Thu Dec 29 02:50:39 2016 +0000 @@ -36,6 +36,7 @@ Parag Nemade Xerxes RÄnby Mark Reinhold +Ricardo Ribalda Bernhard RosenkrÀnzer Marc Schoenefeld Andreas Schwab diff -r e61c9fc4401d -r bfb471488e30 ChangeLog --- a/ChangeLog Fri Mar 16 13:15:15 2012 +0100 +++ b/ChangeLog Thu Dec 29 02:50:39 2016 +0000 @@ -1,3 +1,20 @@ +2016-08-19 Andrew John Hughes + + PR3175: invalid zip timestamp handling leads to + error updating JAR files + * AUTHORS: Add Ricardo Ribalda. + * NEWS: Updated. + +2016-08-19 Ricardo Ribalda + + PR3175: invalid zip timestamp handling leads to + error updating JAR files + * Makefile.am: + (add-pulseaudio): Don't use -u so files are always + overwritten, regardless of timestamps. + (add-pulseaudio-debug): Likewise. + (add-pulseaudio-ecj): Likewise. + 2016-12-28 Andrew John Hughes PR3174: systemtap: type definition 'symbolOopDesc' not found diff -r e61c9fc4401d -r bfb471488e30 Makefile.am --- a/Makefile.am Fri Mar 16 13:15:15 2012 +0100 +++ b/Makefile.am Thu Dec 29 02:50:39 2016 +0000 @@ -1833,7 +1833,7 @@ cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \ $(BUILD_OUTPUT_DIR)/j2re-image/lib/ext (cd $(PULSE_JAVA_JAVA_SRCDIR) && \ - $(ZIP) -qur $(BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) + $(ZIP) -qr $(BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) endif touch $@ @@ -1856,7 +1856,7 @@ cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \ $(DEBUG_BUILD_OUTPUT_DIR)/j2re-image/lib/ext (cd $(PULSE_JAVA_JAVA_SRCDIR) && \ - $(ZIP) -qur $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) + $(ZIP) -qr $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) endif touch $@ @@ -2175,7 +2175,7 @@ cp -pPRf $(PULSE_JAVA_BUILDDIR)/pulse-java.jar \ $(ECJ_BUILD_OUTPUT_DIR)/j2re-image/lib/ext (cd $(PULSE_JAVA_JAVA_SRCDIR) && \ - $(ZIP) -qur $(ECJ_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) + $(ZIP) -qr $(ECJ_BUILD_OUTPUT_DIR)/j2sdk-image/src.zip org ) endif touch $@ diff -r e61c9fc4401d -r bfb471488e30 NEWS --- a/NEWS Fri Mar 16 13:15:15 2012 +0100 +++ b/NEWS Thu Dec 29 02:50:39 2016 +0000 @@ -17,6 +17,7 @@ * Bug fixes - PR3152: Zero build fails with pch disabled - PR3174: systemtap: type definition 'symbolOopDesc' not found + - PR3175: invalid zip timestamp handling leads to error updating JAR files - PR3205: Builds fails with pch disabled New in release 1.13.12 (2016-08-24):